declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
11 lines (10 loc) • 547 B
TypeScript
import { FileFixFunction, FileContentsFunction } from '../../../../../domain';
import { FileCheckDeclarationInput } from '../../../../../domain/objects/FileCheckDeclarationInput';
export declare const getHydratedCheckInputsForFile: ({ declaredProjectDirectory, declaredFileCorePath, }: {
declaredProjectDirectory: string;
declaredFileCorePath: string;
}) => Promise<{
declaredCheckInputs: FileCheckDeclarationInput | null;
declaredFixFunction: null | FileFixFunction;
declaredContentsFunction: null | FileContentsFunction;
}>;