UNPKG

declapract

Version:

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

10 lines (9 loc) 310 B
import { FileActionPlan } from '../../../domain'; export declare const filterPracticeEvaluationsFromPlans: ({ plans, filter, }: { plans: FileActionPlan[]; filter: { byPracticeNames?: string[]; byFilePaths?: string[]; byFixable?: boolean; }; }) => Promise<FileActionPlan[]>;