UNPKG

@monorepo-utils/workspaces-to-typescript-project-references

Version:
60 lines (59 loc) 1.15 kB
import meow from "meow"; export declare const cli: meow.Result<{ root: { type: "string"; default: string; }; includesRoot: { type: "boolean"; default: false; }; includesLocal: { type: "boolean"; default: false; }; check: { type: "boolean"; default: false; }; plugin: { type: "string"; isMultiple: true; }; tsconfigPath: { type: "string"; default: string; }; }>; export declare const run: (_input?: string[], flags?: meow.TypedFlags<{ root: { type: "string"; default: string; }; includesRoot: { type: "boolean"; default: false; }; includesLocal: { type: "boolean"; default: false; }; check: { type: "boolean"; default: false; }; plugin: { type: "string"; isMultiple: true; }; tsconfigPath: { type: "string"; default: string; }; }> & { [name: string]: unknown; }) => Promise<{ exitStatus: number; stdout: string | null; stderr: string | null; }>;