@tongziyang/uni-calendar-plugin
Version:
A comprehensive calendar plugin for uniapp with support for Gregorian and Lunar calendars, date selection, hotel booking, check-in functionality, and more.
48 lines (47 loc) • 1.34 kB
TypeScript
/// <reference types="shims-vue" />
import { PropType } from 'vue';
import { DateInfo } from '../types';
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
date: {
type: DateConstructor;
required: true;
};
dayInfo: {
type: PropType<DateInfo>;
required: true;
};
showLunar: {
type: BooleanConstructor;
default: boolean;
};
showPrice: {
type: BooleanConstructor;
default: boolean;
};
}>, {
formattedDate: import("vue").ComputedRef<string>;
handleCheckIn: () => void;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "check-in"[], "check-in", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
date: {
type: DateConstructor;
required: true;
};
dayInfo: {
type: PropType<DateInfo>;
required: true;
};
showLunar: {
type: BooleanConstructor;
default: boolean;
};
showPrice: {
type: BooleanConstructor;
default: boolean;
};
}>> & Readonly<{
"onCheck-in"?: ((...args: any[]) => any) | undefined;
}>, {
showLunar: boolean;
showPrice: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;