MCPcopy Create free account
hub / github.com/SoCreate/angular-playground / SandboxFileInformation

Interface SandboxFileInformation

projects/cli/src/build-sandboxes.ts:8–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6export const SANDBOX_MENU_ITEMS_FILE = resolvePath(__dirname, './sandbox-menu-items.js');
7
8export interface SandboxFileInformation {
9 key: string;
10 srcPath: string;
11 searchKey: string;
12 name: string;
13 label: string;
14 scenarioMenuItems: {
15 key: number;
16 description: string;
17 }[];
18}
19
20export async function buildSandboxes(srcPaths: string[], chunk: boolean, makeSandboxMenuItemFile: boolean, definedSandboxesPath: string): Promise<string[]> {
21 const chunkMode = chunk ? 'lazy' : 'eager';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected