@builder.io/dev-tools
Version:
Builder.io Visual CMS Devtools
10 lines (9 loc) • 616 B
TypeScript
import type { DevToolsSys } from "../types";
import ts from "typescript";
export declare function codeEqual(sys: DevToolsSys, n: ts.Node | null | undefined | string, expectCode: string, removeComments?: boolean): Promise<void>;
export declare function createTestFsSys(rootDir: string, options?: {
readOnlyPermissions?: boolean;
}): Promise<DevToolsSys>;
export declare function createTestMemSys(rootDir?: string): Promise<DevToolsSys>;
export declare function createRemixTestMemSys(rootDir?: string): Promise<DevToolsSys>;
export declare function createAngularTestMemSys(rootDir?: string): Promise<DevToolsSys>;