DefinitelyTyped/types/clean-stack/index.d.ts
2017-08-10 16:51:55 -07:00

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;
}
}