@orchestrator/ngx-testing
Version:
Testing utilities for Angular projects
7 lines (6 loc) • 349 B
TypeScript
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;