declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
8 lines (7 loc) • 445 B
TypeScript
import { type PracticeDeclaration } from '../../../domain.objects';
import { FilePracticeEvaluation } from '../../../domain.objects/FilePracticeEvaluation';
import type { ProjectCheckContext } from '../../../domain.objects/ProjectCheckContext';
export declare const evaluteProjectAgainstPracticeDeclaration: ({ practice, project, }: {
practice: PracticeDeclaration;
project: ProjectCheckContext;
}) => Promise<FilePracticeEvaluation[]>;