@fluentui/react-northstar
Version:
A themable React component library.
9 lines (8 loc) • 404 B
TypeScript
import * as React from 'react';
import { PositioningProps } from 'src/utils/positioner';
declare type ImplementsPopperPropsOptions<P> = {
requiredProps?: Partial<P>;
};
export declare const positioningProps: Required<Omit<PositioningProps, 'popperRef'>>;
export declare function implementsPopperProps<P>(Component: React.ComponentType<P>, options?: ImplementsPopperPropsOptions<P>): void;
export {};