// Type definitions for cuid v1.3.8 // Project: https://github.com/ericelliott/cuid // Definitions by: Dave Keen , João Forja // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface CUID { (): string; slug: () => string; } declare var cuid: CUID; export = cuid;