UNPKG

401 BTypeScriptView Raw
1// Type definitions for dedent 0.7
2// Project: https://github.com/dmnd/dedent
3// Definitions by: Douglas Duteil <https://github.com/douglasduteil>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6export = dedent;
7
8declare function dedent(literals: string): string;
9declare function dedent(literals: TemplateStringsArray, ...placeholders: any[]): string;
10declare namespace dedent {}