0813ffd2c8b5f7cc7b0424d9a084edc9f7cab5f50a295d9d422c0b3d32f25bfc75b8be371dc08740a90d09eb2d8bb3e7b0d0b7a9daad8ca1cbaef7ee24cccc 524 B

123456789101112
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type { DateCell } from '../types';
  3. export declare const basicCellProps: {
  4. readonly cell: {
  5. readonly type: import("vue").PropType<DateCell>;
  6. readonly required: false;
  7. readonly validator: ((val: unknown) => boolean) | undefined;
  8. __epPropKey: true;
  9. };
  10. };
  11. export type BasicCellProps = ExtractPropTypes<typeof basicCellProps>;
  12. export type BasicCellPropsPublic = __ExtractPublicPropTypes<typeof basicCellProps>;