UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

11 lines (10 loc) 448 B
import type { SelectOptionsType } from "@cn-ui/reactive"; import { type BaseFormItemType } from "../form/BaseFormItemType"; export interface CheckboxProps extends BaseFormItemType, SelectOptionsType { /** * 是否是半选状态 * @tested */ indeterminate?: boolean; } export declare const Checkbox: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<CheckboxProps, HTMLInputElement, boolean>>;