UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

11 lines (10 loc) 306 B
/// <reference types="react" /> import { ModalProps } from '../modal/Modal'; export interface ModalContextValue { open: (props: ModalProps) => void; location?: { pathname: string; }; } declare const ModalContext: import("react").Context<ModalContextValue>; export default ModalContext;