UNPKG

@orchestrator/ngx-testing

Version:
7 lines (6 loc) 349 B
import { Type } from '@angular/core'; export interface OutputMock<T = any> { } export declare type OutputMockFactory<T = any> = (outputName: string, compName: string, compType: Type<T>, getComp: () => T) => OutputMock; export declare function setOutputMock(mock: OutputMockFactory): void; export declare function getOutputMock(): OutputMockFactory;