Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Nov 5, 2023
1 parent 73d4a17 commit d3e164b
Show file tree
Hide file tree
Showing 5 changed files with 175 additions and 54 deletions.
20 changes: 9 additions & 11 deletions dist/gateway.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,18 @@ type GatewayOptions = {
allow: any;
custom: any;
fixed: any;
timeout: {
client: boolean;
max: number;
};
error: {
message: boolean;
details: boolean;
};
debug: boolean;
debug: {
response: boolean;
log: boolean;
};
};
declare function gateway(this: any, options: GatewayOptions): {
exports: {
Expand All @@ -29,16 +36,7 @@ declare function gateway(this: any, options: GatewayOptions): {
};
};
declare namespace gateway {
var defaults: {
allow: any;
custom: any;
fixed: any;
error: {
message: boolean;
details: boolean;
};
debug: boolean;
};
var defaults: GatewayOptions;
}
export type { GatewayOptions, GatewayResult, };
export default gateway;
81 changes: 66 additions & 15 deletions dist/gateway.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d3e164b

Please sign in to comment.