DefinitelyTyped/types/uuidv4/uuidv4-tests.ts
2019-01-25 18:48:31 +09:00

14 lines
257 B
TypeScript

import * as uuidv4 from 'uuidv4'; // uuidv4 is () => string
// $ExpectType string
uuidv4();
// $ExpectType string
uuidv4.empty();
// $ExpectType boolean
uuidv4.is('00000000-0000-0000-0000-000000000000');
// $ExpectType string
uuidv4.fromString("test");