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