declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
7 lines (6 loc) • 339 B
TypeScript
import { FileCheckDeclaration, FileCheckPurpose } from '../../../../../domain.objects';
export declare const getFileCheckDeclaration: ({ purpose, declaredProjectDirectory, declaredFileCorePath, }: {
purpose: FileCheckPurpose;
declaredProjectDirectory: string;
declaredFileCorePath: string;
}) => Promise<FileCheckDeclaration>;