UNPKG

@datr.tech/marble-api-model-validator-unit-test-generator

Version:

A Marble unit test generator for Mongoose based model validators (within the associated API packages)

13 lines (12 loc) 629 B
import { IParserGetAppRef } from './IParserGetAppRef'; import { IParserGetModelValidatorDef } from './IParserGetModelValidatorDef'; import { IParserGetModelValidatorName } from './IParserGetModelValidatorName'; import { IParserGetModelValidatorUnitTestPaths } from './IParserGetModelValidatorUnitTestPaths'; import { IParserParse } from './IParserParse'; export interface IParser { getAppRef: IParserGetAppRef; getModelValidatorDef: IParserGetModelValidatorDef; getModelValidatorName: IParserGetModelValidatorName; getModelValidatorUnitTestPaths: IParserGetModelValidatorUnitTestPaths; parse: IParserParse; }