6 lines
107 B
TypeScript
6 lines
107 B
TypeScript
|
|
import { IEvents } from '@src/model/Calendar'
|
||
|
|
|
||
|
|
export interface IBookingState {
|
||
|
|
bookinglist: IEvents[]
|
||
|
|
}
|