File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,19 @@ export declare class BCalendar extends BvComponent {
1010 focus : ( ) => void
1111 blur : ( ) => void
1212}
13+
14+ // --- Interfaces ---
15+
16+ // Calendar context event object
17+ export interface BcCalendarCtxObject {
18+ readonly selectedFormatted : string
19+ readonly selectedYMD : string
20+ readonly selectedDate : Date | null
21+ readonly activeFormatted : string
22+ readonly activeYMD : string
23+ readonly activeDate : Date | null
24+ readonly disabled : boolean
25+ readonly locale : string
26+ readonly calendarLocale : string
27+ readonly rtl : boolean
28+ }
Original file line number Diff line number Diff line change @@ -10,3 +10,18 @@ export declare class BTime extends BvComponent {
1010 focus : ( ) => void
1111 blur : ( ) => void
1212}
13+
14+ // --- Interfaces ---
15+
16+ // Time context event object
17+ export interface BvTimeCtxEvent {
18+ readonly formatted : string
19+ readonly value : string
20+ readonly hours : number | null
21+ readonly minutes : number | null
22+ readonly seconds : number | null
23+ readonly hourCycle : string
24+ readonly hour12 : boolean
25+ readonly locale : string
26+ readonly isRtl : boolean
27+ }
You can’t perform that action at this time.
0 commit comments