UNPKG

declapract

Version:

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

8 lines (7 loc) 427 B
import { PracticeDeclaration } from '../../../domain'; import { FilePracticeEvaluation } from '../../../domain/objects/FilePracticeEvaluation'; import { ProjectCheckContext } from '../../../domain/objects/ProjectCheckContext'; export declare const evaluteProjectAgainstPracticeDeclaration: ({ practice, project, }: { practice: PracticeDeclaration; project: ProjectCheckContext; }) => Promise<FilePracticeEvaluation[]>;