mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
433 B
TypeScript
15 lines
433 B
TypeScript
// Type definitions for clean-stack 1.3
|
|
// Project: https://github.com/sindresorhus/clean-stack#readme
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = cleanStack;
|
|
|
|
declare function cleanStack(stack: string, options?: cleanStack.Options): string;
|
|
|
|
declare namespace cleanStack {
|
|
interface Options {
|
|
pretty?: boolean;
|
|
}
|
|
}
|