UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

13 lines (10 loc) 231 B
import { mount } from 'enzyme'; export interface MountOptions { mount: typeof mount; } export default function createMount( options?: Partial<MountOptions> ): typeof mount & { attachTo: HTMLElement; cleanUp: Function; };