UNPKG

declapract

Version:

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

10 lines (9 loc) 462 B
import { FileActionPlan, type PracticeDeclaration, type ProjectVariablesImplementation } from '../../../domain.objects'; /** * get the plans required to make a project follow the declared practices */ export declare const getPlansForProject: ({ practices, projectRootDirectory, projectVariables, }: { practices: PracticeDeclaration[]; projectRootDirectory: string; projectVariables: ProjectVariablesImplementation; }) => Promise<FileActionPlan[]>;