sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
21 lines (20 loc) • 950 B
TypeScript
import { type CalendarProps } from '../calendar/common';
import { type DefaultProps } from '../config';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
export interface CalendarPopoutProps extends FormPopoutProps, CalendarProps {
}
export declare const defaultCalendarPopoutProps: () => DefaultProps<CalendarPopoutProps>;
export interface CalendarPopoutSlots {
default?(props: Record<string, never>): any;
title?(props: Record<string, never>): any;
'title-prepend'?(props: Record<string, never>): any;
}
export interface CalendarPopoutEmits extends TransitionHookEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'update:model-value', value: Date | Date[] | string | string[] | undefined): void;
(e: 'change', value: Date | Date[] | string | string[] | undefined): void;
(e: 'confirm'): void;
}
export interface CalendarPopoutExpose {
}