Skip to content

Commit

Permalink
dict
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimiank committed Jun 4, 2024
1 parent b59abc0 commit 72f724d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/decorators/timeout.decorator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import {
} from '../schedule.constants';

/**
* Schedules an timeout (`setTimeout`).
* Schedules a timeout (`setTimeout`).
*/
export function Timeout(timeout: number): MethodDecorator;
/**
* Schedules an timeout (`setTimeout`).
* Schedules a timeout (`setTimeout`).
*/
export function Timeout(name: string, timeout: number): MethodDecorator;
/**
* Schedules an timeout (`setTimeout`).
* Schedules a timeout (`setTimeout`).
*/
export function Timeout(
nameOrTimeout: string | number,
Expand Down

0 comments on commit 72f724d

Please # to comment.