2019-11-18 09:39:32 -05:00
|
|
|
// Ported from js-yaml v3.13.1:
|
|
|
|
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da
|
|
|
|
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
|
2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-11-18 09:39:32 -05:00
|
|
|
|
2020-05-09 08:34:47 -04:00
|
|
|
export { ParseOptions, parse, parseAll } from "./_yaml/parse.ts";
|
2019-12-20 15:21:30 -05:00
|
|
|
export {
|
|
|
|
DumpOptions as StringifyOptions,
|
2020-03-28 13:03:49 -04:00
|
|
|
stringify,
|
2020-05-09 08:34:47 -04:00
|
|
|
} from "./_yaml/stringify.ts";
|
2020-05-10 17:17:54 -04:00
|
|
|
export { SchemaDefinition } from "./_yaml/schema.ts";
|
|
|
|
export { StyleVariant } from "./_yaml/type.ts";
|
|
|
|
export {
|
|
|
|
CORE_SCHEMA,
|
|
|
|
DEFAULT_SCHEMA,
|
|
|
|
FAILSAFE_SCHEMA,
|
|
|
|
JSON_SCHEMA,
|
|
|
|
} from "./_yaml/schema/mod.ts";
|