Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Remove unused RpcSubscriptionsRequest type #3391

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
export type RpcSubscriptionsRequest<TResponse> = {
params: unknown[];
responseTransformer?: (response: unknown, notificationName: string) => TResponse;
subscribeMethodName: string;
unsubscribeMethodName: string;
};

export type PendingRpcSubscriptionsRequest<TNotification> = {
subscribe(options: RpcSubscribeOptions): Promise<AsyncIterable<TNotification>>;
};
Expand Down