DefinitelyTyped/types/pretty/index.d.ts
2019-02-21 11:17:45 +11:00

13 lines
357 B
TypeScript

// Type definitions for pretty 2.0
// Project: https://github.com/jonschlinkert/pretty
// Definitions by: Adam Zerella <https://github.com/adamzerella>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface PrettyOptions {
ocd: boolean;
}
declare function pretty(str: string, options?: PrettyOptions): string;
export = pretty;