diff --git a/pkg/npm/api/hark/types.ts b/pkg/npm/api/hark/types.ts index cab900e7c6..e52912cbb7 100644 --- a/pkg/npm/api/hark/types.ts +++ b/pkg/npm/api/hark/types.ts @@ -13,7 +13,7 @@ export type HarkContent = { ship: string; } | { text: string; }; export interface HarkBody { title: HarkContent[]; - time: string; + time: number; content: HarkContent[]; link: string; binned: string; @@ -29,7 +29,7 @@ export interface HarkBin { place: HarkPlace; } -export type HarkLid = +export type HarkLid = { unseen: null; } | { seen: null; } | { time: string; };