UNPKG

@fluentui/react-northstar

Version:
12 lines (11 loc) 417 B
import * as React from 'react'; import { Props, ShorthandValue } from 'src/types'; export interface ImplementsWrapperPropOptions { wrapppedComponentSelector: any; WrapperComponent?: any; } declare type WrapperProps = { wrapper?: ShorthandValue<Props>; }; export declare const implementsWrapperProp: (Component: React.ComponentType<WrapperProps>, options: ImplementsWrapperPropOptions) => void; export {};