DefinitelyTyped/cuid/cuid.d.ts

11 lines
275 B
TypeScript

// Type definitions for cuid
// Project: https://github.com/ericelliott/cuid
// Definitions by: Dave Keen <http://www.keendevelopment.ch>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module 'cuid' {
function cuid(): string;
export = cuid
}