From e8d82a6348d4cf9fc6a023fe16bf75df7fea61b0 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Fri, 20 Dec 2019 20:21:30 +0000 Subject: feat: Add missing mod.ts files in std (#3509) std/archive/tar.ts: - Remove FileReader. - Remove FileWriter. std/encoding/csv.ts: - ExtendedParseOptions -> ParseOptions - HeaderOption -> HeaderOptions - ParseOptions -> ReadOptions - readAll() -> readMatrix() std/encoding/yaml.ts: - DumpOptions -> StringifyOptions std/fmt/colors.ts: - getEnabled() -> getColorEnabled() - setEnabled() -> setColorEnabled() std/testing/mod.ts: - Re-export sibling modules. --- std/encoding/yaml.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'std/encoding/yaml.ts') diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts index 15b12c04f..27c2874ec 100644 --- a/std/encoding/yaml.ts +++ b/std/encoding/yaml.ts @@ -3,6 +3,9 @@ // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -export * from "./yaml/parse.ts"; -export * from "./yaml/stringify.ts"; +export { ParseOptions, parse } from "./yaml/parse.ts"; +export { + DumpOptions as StringifyOptions, + stringify +} from "./yaml/stringify.ts"; export * from "./yaml/schema/mod.ts"; -- cgit v1.2.3