mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
// Type definitions for cuid v1.3.8
|
|
// Project: https://github.com/ericelliott/cuid
|
|
// Definitions by: Dave Keen <http://www.keendevelopment.ch>, João Forja <http://discipliningcode.com>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface CUID {
|
|
(): string;
|
|
slug: () => string;
|
|
}
|
|
declare var cuid: CUID;
|
|
|
|
export = cuid; |