Skip to content

Commit

Permalink
Update Parameters type
Browse files Browse the repository at this point in the history
  • Loading branch information
VickyStash committed Sep 20, 2023
1 parent cb1c6b7 commit baf9a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Logger.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare type Parameters = string | Record<string, unknown>;
declare type Parameters = string | Record<string, unknown> | Array<Record<string, unknown>>;
declare type ServerLoggingCallbackOptions = {api_setCookie: boolean; logPacket: string};
declare type ServerLoggingCallback = (logger: Logger, options: ServerLoggingCallbackOptions) => Promise<{requestID: string}> | undefined;
declare type ClientLoggingCallBack = (message: string) => void;
Expand Down

0 comments on commit baf9a9a

Please sign in to comment.