UNPKG
@activelylearn/material-ui
Version:
latest (1.1.0-al-menuitem-fix)
1.1.0-al-menuitem-fix
1.0.0-beta.21al
1.0.0-beta.21
Material-UI's workspace package
material-ui.com
mui-org/material-ui
@activelylearn/material-ui
/
packages
/
material-ui
/
src
/
test-utils
/
createMount.d.ts
13 lines
(10 loc)
•
230 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
; };