UNPKG

declapract

Version:

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

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