Skip to content

Commit

Permalink
remove unnecessary id from Omit keys.
Browse files Browse the repository at this point in the history
  • Loading branch information
AsaiToshiya authored and fiatjaf committed Jan 2, 2025
1 parent be74115 commit a0b950a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abstract-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type SubCloser = { close: () => void }

export type AbstractPoolConstructorOptions = AbstractRelayConstructorOptions & {}

export type SubscribeManyParams = Omit<SubscriptionParams, 'onclose' | 'id'> & {
export type SubscribeManyParams = Omit<SubscriptionParams, 'onclose'> & {
maxWait?: number
onclose?: (reasons: string[]) => void
id?: string
Expand Down

0 comments on commit a0b950a

Please sign in to comment.