UNPKG

styled-components

Version:

Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅

29 lines (27 loc) • 2.36 kB
// flow-typed signature: 323fcc1a3353d5f7a36c5f1edcd963ef // flow-typed version: 41f45a7d8c/react-addons-test-utils_v15.x.x/flow_>=v0.23.x declare type ReactAddonTest$FunctionOrComponentClass = React$Component<any, any, any> | Function; declare module 'react-addons-test-utils' { declare var Simulate: { [eventName: string]: (element: Element, eventData?: Object) => void; }; declare function renderIntoDocument(instance: React$Element<any>): React$Component<any, any, any>; declare function mockComponent(componentClass: ReactAddonTest$FunctionOrComponentClass, mockTagName?: string): Object; declare function isElement(element: React$Element<any>): boolean; declare function isElementOfType(element: React$Element<any>, componentClass: ReactAddonTest$FunctionOrComponentClass): boolean; declare function isDOMComponent(instance: React$Component<any, any, any>): boolean; declare function isCompositeComponent(instance: React$Component<any, any, any>): boolean; declare function isCompositeComponentWithType(instance: React$Component<any, any, any>, componentClass: ReactAddonTest$FunctionOrComponentClass): boolean; declare function findAllInRenderedTree(tree: React$Component<any, any, any>, test: (child: React$Component<any, any, any>) => boolean): Array<React$Component<any, any, any>>; declare function scryRenderedDOMComponentsWithClass(tree: React$Component<any, any, any>, className: string): Array<Element>; declare function findRenderedDOMComponentWithClass(tree: React$Component<any, any, any>, className: string): ?Element; declare function scryRenderedDOMComponentsWithTag(tree: React$Component<any, any, any>, tagName: string): Array<Element>; declare function findRenderedDOMComponentWithTag(tree: React$Component<any, any, any>, tagName: string): ?Element; declare function scryRenderedComponentsWithType(tree: React$Component<any, any, any>, componentClass: ReactAddonTest$FunctionOrComponentClass): Array<React$Component<any, any, any>>; declare function findRenderedComponentWithType(tree: React$Component<any, any, any>, componentClass: ReactAddonTest$FunctionOrComponentClass): ?React$Component<any, any, any>; declare class ReactShallowRender { render(element: React$Element<any>): void; getRenderOutput(): React$Element<any>; } declare function createRenderer(): ReactShallowRender; }