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:
parent
60dfd911de
commit
e74a83a715
2 changed files with 11 additions and 1 deletions
|
@ -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";
|
||||
|
|
|
@ -2,3 +2,6 @@
|
|||
|
||||
import "./_yaml/parse_test.ts";
|
||||
import "./_yaml/stringify_test.ts";
|
||||
|
||||
// Type check.
|
||||
import "./yaml.ts";
|
||||
|
|
Loading…
Reference in a new issue