UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

14 lines (11 loc) 249 B
import { mount } from 'enzyme'; export interface MountOptions { mount: typeof mount; strict: boolean; } export default function createMount( options?: Partial<MountOptions>, ): typeof mount & { attachTo: HTMLElement; cleanUp(): void; };