UNPKG

@beenotung/tslib

Version:
10 lines (9 loc) 273 B
/** * https://en.wikipedia.org/wiki/Universally_unique_identifier */ export declare function is_uuid(s: string): boolean; export interface Counter { next(): number; } export declare function new_counter(init?: number): Counter; export declare const Counter: Counter;