mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-18 07:51:48 +08:00
11 lines
401 B
TypeScript
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 {}
|