76 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| declare function __VLS_template(): {
 | |
|     "date-cell"?(_: {
 | |
|         data: {
 | |
|             isSelected: boolean;
 | |
|             type: string;
 | |
|             day: string;
 | |
|             date: Date;
 | |
|         };
 | |
|     }): any;
 | |
| };
 | |
| declare const __VLS_component: import("vue").DefineComponent<{
 | |
|     readonly selectedDay: {
 | |
|         readonly type: import("vue").PropType<import("dayjs").Dayjs>;
 | |
|         readonly required: false;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
|     readonly range: {
 | |
|         readonly type: import("vue").PropType<[import("dayjs").Dayjs, import("dayjs").Dayjs]>;
 | |
|         readonly required: false;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
|     readonly date: {
 | |
|         readonly type: import("vue").PropType<import("dayjs").Dayjs>;
 | |
|         readonly required: true;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
|     readonly hideHeader: {
 | |
|         readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
 | |
|         readonly required: false;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
| }, {
 | |
|     /** @description toggle date panel */
 | |
|     getFormattedDate: (day: number, type: import("./date-table").CalendarDateCellType) => import("dayjs").Dayjs;
 | |
| }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
 | |
|     pick: (value: import("dayjs").Dayjs) => void;
 | |
| }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
 | |
|     readonly selectedDay: {
 | |
|         readonly type: import("vue").PropType<import("dayjs").Dayjs>;
 | |
|         readonly required: false;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
|     readonly range: {
 | |
|         readonly type: import("vue").PropType<[import("dayjs").Dayjs, import("dayjs").Dayjs]>;
 | |
|         readonly required: false;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
|     readonly date: {
 | |
|         readonly type: import("vue").PropType<import("dayjs").Dayjs>;
 | |
|         readonly required: true;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
|     readonly hideHeader: {
 | |
|         readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
 | |
|         readonly required: false;
 | |
|         readonly validator: ((val: unknown) => boolean) | undefined;
 | |
|         __epPropKey: true;
 | |
|     };
 | |
| }>> & {
 | |
|     onPick?: ((value: import("dayjs").Dayjs) => any) | undefined;
 | |
| }, {}>;
 | |
| declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
 | |
| export default _default;
 | |
| type __VLS_WithTemplateSlots<T, S> = T & {
 | |
|     new (): {
 | |
|         $slots: S;
 | |
|     };
 | |
| };
 |