feat: bootstrap auto virtual tryon admin frontend
This commit is contained in:
28
tests/scripts/dev-stack-stack-mjs.d.ts
vendored
Normal file
28
tests/scripts/dev-stack-stack-mjs.d.ts
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
declare module "../../scripts/dev-stack/stack.mjs" {
|
||||
export type StackServiceConfig = {
|
||||
key: string;
|
||||
cwd: string;
|
||||
port: number | null;
|
||||
command: string[];
|
||||
};
|
||||
|
||||
export type StackConfig = {
|
||||
frontendRoot: string;
|
||||
backendRoot: string;
|
||||
runtimeRoot: string;
|
||||
pidRoot: string;
|
||||
logRoot: string;
|
||||
temporalDatabaseFile: string;
|
||||
services: StackServiceConfig[];
|
||||
};
|
||||
|
||||
export function getDefaultTemporalCandidates(tempDirectory: string): string[];
|
||||
|
||||
export function resolveTemporalCli(options: {
|
||||
pathLookupResult: string | null;
|
||||
candidatePaths: string[];
|
||||
existingPaths: Set<string>;
|
||||
}): string | null;
|
||||
|
||||
export function createStackConfig(frontendRoot: string, backendRoot?: string): StackConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user