diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-05-10 22:17:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 17:17:54 -0400 |
commit | e74a83a7152fc5d1f6dace1fac49062d331f1cac (patch) | |
tree | 1be83ecc696e078d1a0eabce9871356f377955a9 /std/encoding/yaml.ts | |
parent | 60dfd911de693263157e28e58e4307d6eb4a3476 (diff) |
fix(std/encoding/yaml): Correct exports (#5191)
Diffstat (limited to 'std/encoding/yaml.ts')
-rw-r--r-- | std/encoding/yaml.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts index abe210d85..78866ed2a 100644 --- a/std/encoding/yaml.ts +++ b/std/encoding/yaml.ts @@ -8,4 +8,11 @@ export { DumpOptions as StringifyOptions, stringify, } from "./_yaml/stringify.ts"; -export { Schema, SchemaDefinition, TypeMap } from "./_yaml/schema/mod.ts"; +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"; |