UNPKG

declapract

Version:

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

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