mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Types for utility function: - definition file - test https://www.npmjs.com/package/to-slug-case Thanks!
9 lines
317 B
TypeScript
9 lines
317 B
TypeScript
// Type definitions for to-slug-case 1.0
|
|
// Project: https://github.com/ianstormtaylor/to-slug-case
|
|
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function toSlugCase(str: string): string;
|
|
|
|
export = toSlugCase;
|