// Type definitions for shortid // Project: https://github.com/dylang/shortid // Definitions by: Sam Saint-Pettersen , Danny Arnold // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare const shortid: ShortId export = shortid interface ShortId { (): string, generate: () => string, characters: (string: string) => string, isValid: (id: any) => boolean, worker: (integer: number) => void, seed: (float: number) => void, }