UNPKG

@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.

9 lines (8 loc) 271 B
import React from 'react'; interface ConfigureContextType { value: any; onChange: (value: any, init?: boolean) => void; onRemove: (field: string) => void; } declare const Context: React.Context<ConfigureContextType>; export { Context, ConfigureContextType };