UNPKG

zent

Version:

一套前端设计语言和基于React的实现

13 lines (12 loc) 395 B
/// <reference types="react" /> import { IDisabledTime, IShowTime } from '../types'; export interface IPanelContext { showTime?: IShowTime; onHover?: (val: Date) => void; visibleChange?: boolean; confirmStatus?: boolean; isDisabledCurrent?: boolean; disabledTime?: IDisabledTime; } declare const _default: import("react").Context<IPanelContext>; export default _default;