idlize
1
2declare enum CalendarAlign {
3START = 0,
4CENTER = 1,
5END = 2
6}
7
8declare interface CalendarPickerInterface {
9(): CalendarPickerAttribute
10}
11
12declare class CalendarPickerAttribute extends CommonMethod<CalendarPickerAttribute> {
13edgeAlign(alignType: CalendarAlign, offset?: Offset): CalendarPickerAttribute;
14
15altEdgeAlign(alignType: CalendarAlign, offset?: AltOffset): CalendarPickerAttribute;
16}
17
18declare const CalendarPicker: CalendarPickerInterface