UNPKG

@daotl/traf-nx

Version:

A cli tool that wraps `@traf/core` to be used with Nx.

16 lines (15 loc) 497 B
export declare const log: (message: string) => void; export declare const affectedAction: ({ cwd, action, all, base, json, restArgs, tsConfigFilePath, includeFiles, target, }: AffectedOptions) => Promise<void>; interface AffectedOptions { cwd: string; tsConfigFilePath: string; action?: string; all?: boolean; base?: string; json: boolean; includeFiles: string[]; restArgs: string[]; target: string[]; } export declare function run(): Promise<void>; export {};