js-yaml support on browser

This commit is contained in:
vvakame
2014-08-01 17:26:03 +09:00
parent af65f81664
commit 5231824388

View File

@@ -3,7 +3,7 @@
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 'js-yaml' {
declare module jsyaml {
export function safeLoad(str: string, opts?: LoadOptions): any;
export function load(str: string, opts?: LoadOptions): any;
@@ -46,3 +46,7 @@ declare module 'js-yaml' {
// all supported YAML types.
export var DEFAULT_FULL_SCHEMA: any;
}
declare module 'js-yaml' {
export = jsyaml;
}