UNPKG

@tableau/taco-toolkit

Version:
14 lines (13 loc) 493 B
import { AppLogOption } from '../types/app-log-option'; export interface StaticServerAppConfig { readonly epsInstanceId: string; readonly staticServerId: string; readonly connectorAppDir: string; readonly logOption: AppLogOption; readonly staticServerPort: number; readonly staticServerRoutePrefix: string; } /** * Compose Extractor app config from process args and environment variables. */ export declare function getStaticServerAppConfig(): StaticServerAppConfig;