UNPKG

declapract

Version:

A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.

9 lines (8 loc) 278 B
import { FileActionPlan } from '../../../../domain'; /** * for each "fixable" and "failed" check in the plan, apply the fix */ export declare const applyPlan: ({ plan, projectRootDirectory, }: { plan: FileActionPlan; projectRootDirectory: string; }) => Promise<void>;