summaryrefslogtreecommitdiff
path: root/std/encoding/yaml.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/encoding/yaml.ts')
-rw-r--r--std/encoding/yaml.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts
index 76b1b8379..abe210d85 100644
--- a/std/encoding/yaml.ts
+++ b/std/encoding/yaml.ts
@@ -3,9 +3,9 @@
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-export { ParseOptions, parse, parseAll } from "./yaml/parse.ts";
+export { ParseOptions, parse, parseAll } from "./_yaml/parse.ts";
export {
DumpOptions as StringifyOptions,
stringify,
-} from "./yaml/stringify.ts";
-export * from "./yaml/schema/mod.ts";
+} from "./_yaml/stringify.ts";
+export { Schema, SchemaDefinition, TypeMap } from "./_yaml/schema/mod.ts";