flow2schema/declarations/yaml-js.js

5 lines
160 B
JavaScript
Raw Permalink Normal View History

2017-11-30 14:27:05 +03:00
declare module 'yaml-js' {
declare function load(string): mixed;
declare function dump(mixed, null, null, {indent?: number, width?: number}): string;
}