woby
Version:
A high-performance framework with fine-grained observable/signal-based reactivity for building rich applications.
9 lines • 457 B
TypeScript
import type { IntrinsicElementsMap } from '../types';
export declare const render: (child: JSX.Child) => {
fragment: HTMLDivElement;
unmount: () => void;
getByRole: <K extends keyof IntrinsicElementsMap>(tag: K) => IntrinsicElementsMap[K];
getByTestId: <T extends HTMLElement = HTMLElement>(id: string) => T;
getByText: <T extends HTMLElement = HTMLElement>(text: string | RegExp) => void;
};
//# sourceMappingURL=render.testing.d.ts.map