mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
17 lines
498 B
TypeScript
17 lines
498 B
TypeScript
// Type definitions for gulp-json-editor v2.2.1
|
|
// Project: https://www.npmjs.com/package/gulp-json-editor
|
|
// Definitions by: Peter Juras <https://github.com/peterjuras>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
/// <reference types="node" />
|
|
/// <reference types="js-beautify" />
|
|
|
|
|
|
|
|
interface JEditor {
|
|
(mergeWith: any | ((json: any) => any),
|
|
jsBeautifyOptions?: JsBeautifyOptions): NodeJS.ReadWriteStream;
|
|
}
|
|
|
|
declare const jeditor: JEditor;
|
|
export = jeditor;
|