UNPKG

voxa-cli

Version:
11 lines (10 loc) 1.01 kB
import { IDownload, IIntent, IInvocation, IPublishingInformation, ISlot, IView } from "./Schema"; import { IVoxaSheet } from "./VoxaSheet"; export declare function sheetLocale(voxaSheet: IVoxaSheet, AVAILABLE_LOCALES: string[]): string; export declare function downloadProcessor(voxaSheets: IVoxaSheet[], AVAILABLE_LOCALES: string[]): IDownload[]; export declare function invocationProcessor(voxaSheets: IVoxaSheet[], AVAILABLE_LOCALES: string[]): IInvocation[]; export declare function viewsProcessor(voxaSheets: IVoxaSheet[], AVAILABLE_LOCALES: string[]): IView[]; export declare function slotProcessor(voxaSheets: IVoxaSheet[], AVAILABLE_LOCALES: string[]): ISlot[]; export declare function intentUtterProcessor(voxaSheets: IVoxaSheet[], AVAILABLE_LOCALES: string[]): IIntent[]; export declare function publishingProcessor(voxaSheets: IVoxaSheet[], AVAILABLE_LOCALES: string[]): IPublishingInformation[]; export declare function filterSheets(voxaSheets: IVoxaSheet[], sheetTypes: string[]): IVoxaSheet[];