Changed quote styles

This commit is contained in:
Alexis
2024-08-25 14:14:40 +02:00
parent 07e97873ef
commit 5a47cb3563
180 changed files with 949 additions and 948 deletions

View File

@@ -1,6 +1,6 @@
import { z } from 'zod'
import { categorySchema, type Category } from './Category'
import { dateSchema, type RPGDate } from './Date'
import { z } from "zod"
import { categorySchema, type Category } from "./Category"
import { dateSchema, type RPGDate } from "./Date"
export interface CalendarEvent {
id?: number
@@ -33,5 +33,5 @@ export const postEventBodySchema = z.object({
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function isCalendarEvent(object: any): object is CalendarEvent {
return 'startDate' in object
return "startDate" in object
}