diff --git a/Source/util.ts b/Source/util.ts index 61aae5e7..810b719e 100644 --- a/Source/util.ts +++ b/Source/util.ts @@ -11,6 +11,7 @@ import { ManifestPackage } from "./manifest"; import { PublicGalleryAPI } from "./publicgalleryapi"; const __read = promisify<_read.Options, string>(_read); + export function read( prompt: string, options: _read.Options = {}, diff --git a/Source/viewutils.ts b/Source/viewutils.ts index eb87df87..11488c98 100644 --- a/Source/viewutils.ts +++ b/Source/viewutils.ts @@ -1,4 +1,5 @@ export type ViewTableRow = string[]; + export type ViewTable = ViewTableRow[]; const fixedLocale = "en-us"; diff --git a/Source/xml.ts b/Source/xml.ts index 76cec8ee..48434300 100644 --- a/Source/xml.ts +++ b/Source/xml.ts @@ -44,4 +44,5 @@ export type ContentTypes = { }; export const parseXmlManifest = createXMLParser(); + export const parseContentTypes = createXMLParser();