mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
cuid: initial commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
///<reference path='cuid.d.ts' />
|
||||
|
||||
import cuid = require('cuid')
|
||||
|
||||
var result: string = cuid();
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user