Files
vibn-api/dist/tools/utils.d.ts
2026-05-17 12:43:53 -07:00

5 lines
279 B
TypeScript

/** Directory names to skip when walking or listing workspaces. */
export declare const EXCLUDED: Set<string>;
/** Resolve a relative path safely within a workspace root — throws if it tries to escape. */
export declare function safeResolve(root: string, rel: string): string;