mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-25 18:22:55 +00:00
* feat(nanoid): added newly introduced file declarations * feat(nanoid): added new files to tsconfig * chore(nanoid): bumped version number
11 lines
408 B
TypeScript
11 lines
408 B
TypeScript
// Type definitions for nanoid 2.1
|
|
// Project: https://github.com/ai/nanoid
|
|
// Definitions by: Ruben Schmidmeister <https://github.com/bash>
|
|
// Daniel Zhang <https://github.com/fadezhanger>
|
|
// Sascha Zarhuber <https://github.com/saschazar21>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function nanoid(size?: number): string;
|
|
|
|
export = nanoid;
|