@douyinfe/semi-ui
Version:
A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.
12 lines (11 loc) • 350 B
TypeScript
import React from 'react';
import { Locale } from '../locale/interface';
export interface ContextValue {
direction?: 'ltr' | 'rtl';
timeZone?: string | number;
locale?: Locale;
children?: React.ReactNode;
getPopupContainer?(): HTMLElement;
}
declare const ConfigContext: React.Context<ContextValue>;
export default ConfigContext;