Files
myprojplanet_vite/src/model/BookingStore.ts

6 lines
107 B
TypeScript
Raw Normal View History

2021-08-31 18:09:59 +02:00
import { IEvents } from '@src/model/Calendar'
export interface IBookingState {
bookinglist: IEvents[]
}