mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
403 B
TypeScript
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;
|