UNPKG

969 BTypeScriptView Raw
1import { Emitter } from '@mantou/gem/lib/decorators';
2import { GemElement, TemplateResult } from '@mantou/gem/lib/element';
3import { Time } from '../lib/time';
4/**
5 * @customElement dy-calendar
6 * @attr borderless
7 * @attr today
8 */
9export declare class DuoyunCalendarElement extends GemElement {
10 #private;
11 static headerRow: string;
12 static headerLeftCell: string;
13 static headerRightCell: string;
14 static dayCell: string;
15 static todayCell: string;
16 static otherDayCell: string;
17 static leftTopCell: string;
18 static rightTopCell: string;
19 static leftBottomCell: string;
20 static rightBottomCell: string;
21 datehover: Emitter<number>;
22 dateclick: Emitter<number>;
23 borderless: boolean;
24 today: boolean;
25 position?: number;
26 highlights?: number[][];
27 renderDate?: (date: Time) => TemplateResult;
28 constructor();
29 willMount: () => void;
30 render: () => TemplateResult;
31}
32//# sourceMappingURL=calendar.d.ts.map
\No newline at end of file