-
Notifications
You must be signed in to change notification settings - Fork 93
Closed
Labels
Description
There is no explicit type for render function declaration and typescript generates this declaration type file:
// testing-library.d.ts
import { Type } from '@angular/core';
import { RenderOptions } from './models';
export declare function render<T>(template: string, renderOptions: RenderOptions<T>): any;
export declare function render<T>(component: Type<T>, renderOptions?: RenderOptions<T>): any;
Could you specify their return types with RenderResult
?