From c03db2fd0e7f30cc36edd6ca974d26fed0f4e4da Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Thu, 14 May 2026 00:30:36 +0200 Subject: [PATCH] Type ApiPost keys to be defined --- src/api/types.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api/types.d.ts b/src/api/types.d.ts index 49db156a2..9a11e451f 100644 --- a/src/api/types.d.ts +++ b/src/api/types.d.ts @@ -18,10 +18,10 @@ export interface ApiPlace { } export interface ApiPost { - id?: number; - title?: string; - body?: string; - published_at?: string; + id: number; + title: string; + body: string; + published_at: string; } export interface ApiProject {