Skip to content

Commit

Permalink
add undefind type
Browse files Browse the repository at this point in the history
Signed-off-by: MregXN <[email protected]>
  • Loading branch information
MregXN committed Nov 21, 2023
1 parent 522f635 commit efc6c98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actors/runtime/AbstractActor.ts
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export default abstract class AbstractActor {
timerName: string,
callback: string,
dueTime: Temporal.Duration,
period: Temporal.Duration,
ttl?: Temporal.Duration,
period: Temporal.Duration | undefined,
ttl?: Temporal.Duration | undefined,
state?: any,
) {
// Register the timer in the sidecar
Expand Down
Empty file modified src/types/ActorReminder.type.ts
100644 → 100755
Empty file.

0 comments on commit efc6c98

Please sign in to comment.