diff options
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"; |