declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
9 lines (8 loc) • 488 B
TypeScript
import type { FileCheckEvaluation, FileCheckPurpose, ProjectCheckDeclaration } from '../../../domain.objects';
import type { ProjectCheckContext } from '../../../domain.objects/ProjectCheckContext';
export declare const evaluteProjectAgainstProjectCheckDeclaration: ({ practiceRef, purpose, project, declaration, }: {
practiceRef: string;
purpose: FileCheckPurpose;
project: ProjectCheckContext;
declaration: ProjectCheckDeclaration;
}) => Promise<FileCheckEvaluation[]>;