spanwright
Version:
CLI tool to generate Cloud Spanner E2E testing framework projects with Go database tools and Playwright browser automation
10 lines • 401 B
TypeScript
export interface DatabaseConfig {
count: '1' | '2';
primaryDbName: string;
primarySchemaPath: string;
secondaryDbName?: string;
secondarySchemaPath?: string;
}
export declare function getConfiguration(isNonInteractive: boolean): Promise<DatabaseConfig>;
export declare function generateEnvironmentContent(config: DatabaseConfig): string;
//# sourceMappingURL=configuration.d.ts.map