From e53d8c14a97a51a89965c58e3fb4b998c75949b2 Mon Sep 17 00:00:00 2001 From: James Collins Date: Sun, 23 Apr 2023 15:41:41 +1000 Subject: [PATCH] added Booleanish --- resources/js/helpers/api.types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/js/helpers/api.types.ts b/resources/js/helpers/api.types.ts index 339fa2c..561a139 100644 --- a/resources/js/helpers/api.types.ts +++ b/resources/js/helpers/api.types.ts @@ -1,3 +1,5 @@ +export type Booleanish = boolean | "true" | "false"; + export interface Event { id: string; title: string;