Files
DefinitelyTyped/types/dedent/index.d.ts
2017-06-29 16:55:02 +02:00

11 lines
401 B
TypeScript

// Type definitions for dedent 0.7
// Project: https://github.com/dmnd/dedent
// Definitions by: Douglas Duteil <https://github.com/douglasduteil>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = dedent;
declare function dedent(literals: string): string;
declare function dedent(literals: TemplateStringsArray, ...placeholders: any[]): string;
declare namespace dedent {}