mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-26 08:14:27 +00:00
11 lines
392 B
TypeScript
11 lines
392 B
TypeScript
// Type definitions for uuid-validate 0.0
|
|
// Project: https://github.com/mixer/uuid-validate
|
|
// Definitions by: Hiromi Shikata <https://github.com/HiromiShikata>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function validate(uuid: string, version?: number): boolean;
|
|
declare namespace validate {
|
|
function version(uuid: string): number;
|
|
}
|
|
export = validate;
|