Skip to content

Commit 7dbbad3

Browse files
committed
add undefind type for ttl
1 parent 9df1454 commit 7dbbad3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/actors/runtime/AbstractActor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default abstract class AbstractActor {
9696
reminderName: string,
9797
dueTime: Temporal.Duration,
9898
period: Temporal.Duration | undefined,
99-
ttl?: Temporal.Duration,
99+
ttl?: Temporal.Duration | undefined,
100100
state?: any,
101101
) {
102102
await this.actorClient.actor.registerActorReminder(this.actorType, this.id, reminderName, {

src/types/ActorReminder.type.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ export type ActorReminderType = {
1717
period: Temporal.Duration | undefined; // e.g. 0h0m9s0ms
1818
dueTime?: Temporal.Duration; // e.g. 1m or 0h0m0s0ms defaults to 0s
1919
data?: any; // the data to pass
20-
ttl?: Temporal.Duration; // e.g. 1m
20+
ttl?: Temporal.Duration | undefined; // e.g. 1m
2121
};

0 commit comments

Comments
 (0)