diff options
Diffstat (limited to 'std/encoding/yaml.ts')
-rw-r--r-- | std/encoding/yaml.ts | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts index 78866ed2a..19245b2fc 100644 --- a/std/encoding/yaml.ts +++ b/std/encoding/yaml.ts @@ -3,13 +3,12 @@ // 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 { - DumpOptions as StringifyOptions, - stringify, -} from "./_yaml/stringify.ts"; -export { SchemaDefinition } from "./_yaml/schema.ts"; -export { StyleVariant } from "./_yaml/type.ts"; +export type { ParseOptions } from "./_yaml/parse.ts"; +export { parse, parseAll } from "./_yaml/parse.ts"; +export type { DumpOptions as StringifyOptions } from "./_yaml/stringify.ts"; +export { stringify } from "./_yaml/stringify.ts"; +export type { SchemaDefinition } from "./_yaml/schema.ts"; +export type { StyleVariant } from "./_yaml/type.ts"; export { CORE_SCHEMA, DEFAULT_SCHEMA, |