mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import yamljs = require('yamljs');
|
|
|
|
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);
|