8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
declare function stripIndent(str: string): string;
|
|
declare function stripIndent(
|
|
literals: TemplateStringsArray,
|
|
...placeholders: any[]
|
|
): string;
|
|
|
|
export = stripIndent;
|