1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 08:33:43 -05:00

fix(std/encoding/yaml): Correct exports (#5191)

This commit is contained in:
Nayeem Rahman 2020-05-10 22:17:54 +01:00 committed by GitHub
parent 60dfd911de
commit e74a83a715
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -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";

View file

@ -2,3 +2,6 @@
import "./_yaml/parse_test.ts";
import "./_yaml/stringify_test.ts";
// Type check.
import "./yaml.ts";