DefinitelyTyped/cuid/cuid.d.ts
2015-06-26 15:50:26 +02:00

11 lines
271 B
TypeScript

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