sample-pilet-service
Version:
Piral: Sample pilet feed service.
12 lines (11 loc) • 460 B
TypeScript
export interface AppOptions {
piletPath?: string;
authPath?: string;
loginPath?: string;
filePath?: string;
rootUrl?: string;
apiKeys?: Array<string>;
snapshotDir?: string;
port?: number;
}
export declare function runApp({ filePath, piletPath, authPath, loginPath, port, apiKeys, snapshotDir, rootUrl, }?: AppOptions): Promise<import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>;