comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
14 lines (12 loc) • 564 B
TypeScript
import { PropType, ExtractPropTypes } from 'vue';
import { ArrayMix, ComicSize } from '../../../utils';
export declare const checkboxGroupProps: {
readonly modelValue: PropType<ArrayMix<string | number>>;
readonly size: PropType<ComicSize>;
};
export type CheckboxGroupProps = ExtractPropTypes<typeof checkboxGroupProps>;
export declare const checkboxGroupEmits: {
"update:modelValue": (val: ArrayMix<string | number>) => boolean;
change: (val: ArrayMix<string | number>) => boolean;
};
export type CheckboxGroupEmits = typeof checkboxGroupEmits;