@tableau/taco-toolkit
Version:
Tableau Connector Toolkit
14 lines (13 loc) • 493 B
TypeScript
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;