-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
Steps to Reproduce
export declare type OperationParams<Path = unknown, Query = unknown, Body = unknown> = {
path?: Path;
query?: Query;
body?: Body;
options?: {
signal?: AbortSignal;
};
};
Remove the `?` and pass `TPath` as `TPath = any | undefined` instead, same for query and body.Reactions are currently unavailable