mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
/// <reference path="yamljs.d.ts" />
|
|
|
|
yamljs.load('yaml-testfile.yml');
|
|
|
|
yamljs.parse('this_is_no_ymlstring');
|
|
|
|
yamljs.stringify({ a : 'val', b : { ba : 123, bb : 'nothing' }});
|
|
|
|
yamljs.stringify({ a : 'val', b : { ba : 123, bb : 'nothing' }}, 1);
|
|
|
|
yamljs.stringify({ a : 'val', b : { ba : 123, bb : 'nothing' }}, 1, 2); |