Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/testing   js

Repository URL to install this package:

Version: 7.0.10 

/ interfaces / override-by.interface.d.ts

import { TestingModuleBuilder } from '../testing-module.builder';
import { OverrideByFactoryOptions } from './override-by-factory-options.interface';
export interface OverrideBy {
    useValue: (value: any) => TestingModuleBuilder;
    useFactory: (options: OverrideByFactoryOptions) => TestingModuleBuilder;
    useClass: (metatype: any) => TestingModuleBuilder;
}