UNPKG

ngx-testing-tools

Version:
8 lines (7 loc) 285 B
import { Type } from '@angular/core'; export interface ActionTools { emitOutput(selector: string, name: string, $event?: any): void; emitOutput(directive: Type<any>, name: string, $event?: any): void; click(selector: string): void; click(directive: Type<any>): void; }