Convert type to interface
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m1s

This commit is contained in:
2024-04-29 08:37:15 -04:00
parent cb2131ae7e
commit d9cfa4ab56
6 changed files with 72 additions and 48 deletions

View File

@@ -20,7 +20,7 @@ import { computed } from 'vue';
import { date } from 'quasar';
import BoatScheduleTableComponent from './boat/BoatScheduleTableComponent.vue';
type EventData = {
interface EventData {
event: object;
scope: {
timestamp: object;
@@ -28,7 +28,7 @@ type EventData = {
activeDate: boolean;
droppable: boolean;
};
};
}
const calendar = ref();
const scheduleStore = useScheduleStore();