Skip to content

Commit

Permalink
fix implicit type
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajar Abdi Nugraha committed Oct 19, 2024
1 parent 604ed4d commit 76e2256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ulid-monotonic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ export function monotonicFactory(prng: PRNG = detectPrng()): ULID {
* @param seedTime The time to base the ULID on, in milliseconds since the Unix epoch. Defaults to `Date.now()`.
* @returns A ULID that is guaranteed to be strictly increasing for the same seed time.
*/
export const monotonicUlid = monotonicFactory();
export const monotonicUlid: ULID = monotonicFactory();

0 comments on commit 76e2256

Please sign in to comment.