UNPKG

declapract

Version:

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

8 lines (7 loc) 312 B
import { FilePracticeEvaluation, RequiredAction } from '../../../domain'; /** * returns what the required action is for a file, based on all of the evaluations for that file */ export declare const getRequiredActionForFile: ({ evaluations, }: { evaluations: FilePracticeEvaluation[]; }) => RequiredAction;