ohctechv3/.svn/pristine/62/62133d409245c71c3583ac600cbcc9cda96b9e59.svn-base

7 lines
226 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
import * as React from 'react';
import { PopupPlacement } from './Popup.types';
export interface PopupContextValue {
placement: PopupPlacement;
}
export declare const PopupContext: React.Context<PopupContextValue | null>;