Skip to content

Commit

Permalink
fix: typing
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Sep 12, 2024
1 parent 5a9f2e1 commit a386fd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/updater/custom-github-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import fs from "node:fs"
import path from "node:path"
import { URL } from "node:url"

import type {
CustomPublishOptions,
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/models/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export type ActiveList = {
export type FeedResponse = SubscriptionResponse[number]["feeds"]

export type FeedModel = ExtractBizResponse<typeof apiClient.feeds.$get>["data"]["feed"] & {
owner?: UserModel | null
owner?: Omit<UserModel, "createdAt"> | null
}

export type SubscriptionResponse = Array<
Expand Down

0 comments on commit a386fd6

Please sign in to comment.