UNPKG

289 BTypeScriptView Raw
1import { mount } from 'enzyme';
2
3export interface MountOptions {
4 mount: typeof mount;
5 strict: boolean;
6}
7
8/**
9 * @deprecated
10 * @param options
11 */
12export default function createMount(
13 options?: Partial<MountOptions>
14): typeof mount & {
15 attachTo: HTMLElement;
16 cleanUp(): void;
17};