diff options
Diffstat (limited to 'std/encoding/yaml.ts')
-rw-r--r-- | std/encoding/yaml.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts index 15b12c04f..27c2874ec 100644 --- a/std/encoding/yaml.ts +++ b/std/encoding/yaml.ts @@ -3,6 +3,9 @@ // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -export * from "./yaml/parse.ts"; -export * from "./yaml/stringify.ts"; +export { ParseOptions, parse } from "./yaml/parse.ts"; +export { + DumpOptions as StringifyOptions, + stringify +} from "./yaml/stringify.ts"; export * from "./yaml/schema/mod.ts"; |