DefinitelyTyped/types/to-slug-case/index.d.ts
Piotr Błażejewicz (Peter Blazejewicz) 54efff975c
feat(to-slug-case): new type definition (#43404)
Types for utility function:
- definition file
- test

https://www.npmjs.com/package/to-slug-case

Thanks!
2020-03-26 22:34:17 -07:00

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;