gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
17 lines (16 loc) • 739 B
TypeScript
import { type CheckboxGroupOption } from '../checkbox/common';
import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common';
import { type CheckboxPopoutEmits, type CheckboxPopoutProps } from '../checkbox-popout/common';
export type CheckboxInputOption = CheckboxGroupOption;
export interface CheckboxInputProps extends CheckboxPopoutProps, Omit<PopoutInputProps, 'modelValue'> {
valueOnClear?: () => any;
}
export declare const defaultCheckboxInputProps: () => {
valueOnClear: CheckboxInputProps["valueOnClear"];
options: () => never[];
validateEvent: boolean;
};
export interface CheckboxInputSlots extends PopoutInputSlots {
}
export interface CheckboxInputEmits extends CheckboxPopoutEmits {
}