ported unused calls to luxon, removed unused imports
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { Moment } from 'moment';
|
|
||||||
import Calendar from './calendar/Calendar.vue'
|
import Calendar from './calendar/Calendar.vue'
|
||||||
import { Event } from '~/utils/event';
|
import { Event } from '~/utils/event';
|
||||||
import { UCard } from '#components';
|
import { UCard } from '#components';
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import type { DateTime } from "luxon"
|
import type { DateTime } from "luxon"
|
||||||
import type { Moment } from "moment"
|
|
||||||
|
|
||||||
export type Seperator = {
|
export type Seperator = {
|
||||||
text: string,
|
text: string,
|
||||||
@@ -16,8 +15,8 @@ export type Event = AnonymousEvent & {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type AnonymousEvent = {
|
export type AnonymousEvent = {
|
||||||
from: Moment,
|
from: DateTime,
|
||||||
to: Moment
|
to: DateTime
|
||||||
}
|
}
|
||||||
|
|
||||||
export type EventWithCollisions = Event & {
|
export type EventWithCollisions = Event & {
|
||||||
|
|||||||
Reference in New Issue
Block a user