2b38e583be
Each commands/ subfolder (cas, init, thread, workflow) now has: - types.ts for all type definitions - index.ts with pure re-exports only - External imports go through index.ts Closes #108
6 lines
197 B
TypeScript
6 lines
197 B
TypeScript
import type { ParsedAddArgv } from "../src/commands/workflow/index.js";
|
|
|
|
export function addCliArgs(name: string, filePath: string): ParsedAddArgv {
|
|
return { name, filePath, typesPath: null };
|
|
}
|