slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
11 lines (10 loc) • 343 B
TypeScript
import type { FC, ReactNode } from 'react';
import { CheckboxValue } from '.';
export interface CheckboxGroupProps {
value?: CheckboxValue[];
onChange?: (val: CheckboxValue[]) => void;
defaultValue?: CheckboxValue[];
disabled?: boolean;
children?: ReactNode;
}
export declare const Group: FC<CheckboxGroupProps>;