flow2schema/declarations/yaml-js.js

5 lines
160 B
JavaScript

declare module 'yaml-js' {
declare function load(string): mixed;
declare function dump(mixed, null, null, {indent?: number, width?: number}): string;
}