UNPKG
v-calendar-fixed
Version:
latest (3.1.8)
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
A calendar and date picker plugin for Vue.js.
vcalendar.io
nathanreyes/v-calendar
v-calendar-fixed
/
dist
/
types
/
tests
/
unit
/
util
/
dayData.d.ts
7 lines
(6 loc)
•
198 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
DateParts
}
from
'@/utils/date/helpers'
;
export
interface
DayData
extends
Omit
<
Partial
<
DateParts
>, 'date'> {
date
:
string
;
timezone
:
string
; }
export
declare
const
data
:
DayData
[];