@fluentui/react-northstar
Version:
A themable React component library.
6 lines (5 loc) • 326 B
TypeScript
import { ObjectShorthandValue, ShorthandValue } from '../../types';
import { PopperShorthandProps } from './types';
export declare function partitionPopperPropsFromShorthand<P>(value: ShorthandValue<P & {
popper?: PopperShorthandProps;
}>): [ShorthandValue<P> | ObjectShorthandValue<P>, PopperShorthandProps | undefined];