UNPKG

declapract

Version:

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

8 lines (7 loc) 398 B
import { PracticeDeclaration, UseCaseDeclaration } from '../../../domain'; import { ExampleDeclaration } from '../../../domain/objects/ExampleDeclaration'; export declare const readUseCaseDeclarations: ({ declaredUseCasesPath, practices, examples, }: { declaredUseCasesPath: string; practices: PracticeDeclaration[]; examples: ExampleDeclaration[]; }) => Promise<UseCaseDeclaration[]>;