@tableau/taco-toolkit
Version:
Tableau Connector Toolkit
14 lines (13 loc) • 431 B
TypeScript
import { ExecutionState } from '../../taco-commands/utils/command';
interface StartConfig {
debugMode: boolean;
tacoRootPath: string;
}
/**
* Starting EPS with loading a connector at current path.
*
* TODO: this code path is only for connector authors developments.
* We should make this as a dev server.
*/
export declare function startConnector(config: StartConfig, state: ExecutionState): Promise<void>;
export {};