UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

11 lines (10 loc) 256 B
import type { FC } from 'react'; interface Props { type: 'checkbox' | 'radio'; checked: boolean; onChange: (checked: boolean) => void; disabled?: boolean; id?: string; } export declare const NativeInput: FC<Props>; export {};