DefinitelyTyped/types/dashify/index.d.ts
Junyoung Choi (Sai) 861b87f6ba Add dashify (#23092)
* Add dashify

* Use 4 spaces
2018-01-23 10:28:25 -08:00

15 lines
403 B
TypeScript

// Type definitions for dashify 1.0
// Project: https://github.com/jonschlinkert/dashify
// Definitions by: Junyoung Choi <https://github.com/rokt33r>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function dashify(input: string, options?: dashify.Options): string;
declare namespace dashify {
interface Options {
condense?: boolean;
}
}
export = dashify;