Spaces:
Sleeping
Sleeping
File size: 388 Bytes
cfbbc1a | 1 2 3 4 5 6 7 8 9 10 11 | import { TestingModuleBuilder } from '../testing-module.builder';
import { OverrideByFactoryOptions } from './override-by-factory-options.interface';
/**
* @publicApi
*/
export interface OverrideBy {
useValue: (value: any) => TestingModuleBuilder;
useFactory: (options: OverrideByFactoryOptions) => TestingModuleBuilder;
useClass: (metatype: any) => TestingModuleBuilder;
}
|