@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.
14 lines (13 loc) • 356 B
TypeScript
import React from 'react';
type CheckboxContextType = {
checkboxGroup?: {
onChange: (evt: any) => void;
value: any[];
disabled: boolean;
name: any;
isCardType: boolean;
isPureCardType: boolean;
};
};
declare const Context: React.Context<CheckboxContextType>;
export { Context, CheckboxContextType };