mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
271 B
TypeScript
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
|
|
}
|