mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
340 B
TypeScript
10 lines
340 B
TypeScript
// Type definitions for nanoid 2.0
|
|
// Project: https://github.com/ai/nanoid
|
|
// Definitions by: Ruben Schmidmeister <https://github.com/bash>
|
|
// Daniel Zhang <https://github.com/fadezhanger>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function nanoid(size?: number): string;
|
|
|
|
export = nanoid;
|