export type PRNG = () => number; export type ULID = string; export type ULIDFactory = (seedTime?: number) => ULID; export type UUID = string;