mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
357 B
TypeScript
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;
|