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