UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

10 lines (7 loc) 306 B
import { shallow, EnzymeSelector, ShallowRendererProps } from 'enzyme'; export interface ShallowOptions extends ShallowRendererProps { shallow: typeof shallow; dive: boolean; untilSelector: EnzymeSelector; } export default function createShallow(options?: Partial<ShallowOptions>): typeof shallow;