CheckBoxValue.ts 196 B

12345678
  1. import type { CheckboxProps } from "ant-design-vue";
  2. export interface CheckBoxValueProps {
  3. checkboxProps?: CheckboxProps,
  4. text: string,
  5. checkedValue?: unknown,
  6. uncheckedValue?: unknown,
  7. }