UNPKG
materialuiupgraded
Version:
latest (3.2.0)
3.2.0
Material-UI's workspace package
material-ui.com
mui-org/material-ui
materialuiupgraded
/
packages
/
material-ui
/
src
/
test-utils
/
createMount.d.ts
13 lines
(10 loc)
•
242 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ mount }
from
'enzyme'
;
export
interface
MountOptions
{
mount
:
typeof
mount; }
export
default
function
createMount
(
options?: Partial<MountOptions>,
):
typeof
mount & {
attachTo
:
HTMLElement
;
cleanUp
():
void
; };