6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
import { IFile } from './interfaces';
|
|
export type FileValidatorContext<TConfig> = {
|
|
file?: IFile;
|
|
config: TConfig;
|
|
};
|