Skip to content

Commit

Permalink
fix: correct api type for array (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban authored May 27, 2024
1 parent 91e80d4 commit 34ce10f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/renderer/src/hono.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
author: string | null;
changedAt: string;
publishedAt: string;
images: string | null;
categories: string | null;
images: string[] | null;
categories: string[] | null;
}[] | undefined;
docs?: string | undefined;
isSubscribed?: boolean | undefined;
Expand Down Expand Up @@ -458,8 +458,8 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
author: string | null;
changedAt: string;
publishedAt: string;
images: string | null;
categories: string | null;
images: string[] | null;
categories: string[] | null;
collected: boolean;
read: boolean;
}[] | undefined;
Expand Down Expand Up @@ -519,7 +519,7 @@ declare const routes: hono_hono_base.HonoBase<hono.Env, {
changedAt: string;
publishedAt: string;
images: string[] | null;
categories: string | null;
categories: string[] | null;
collected: boolean;
read: boolean;
} | undefined;
Expand Down

0 comments on commit 34ce10f

Please sign in to comment.