Skip to content

Commit

Permalink
fix(types): add missing name argument to proxy register types (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalsadhu authored Mar 1, 2024
1 parent b0bf4da commit 98f1bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare class PodiumProxy {

constructor(options?: PodiumProxy.PodiumProxyOptions);

register(proxyManifest: PodiumProxy.PodletManifest): void;
register(name: string, proxyManifest: PodiumProxy.PodletManifest): void;
/**
* @returns `undefined` if the incoming request didn't match anything registered in the proxy. Otherwise it returns the incoming request with the `.proxy` property set to true if successfully proxied.
*/
Expand Down

0 comments on commit 98f1bd2

Please sign in to comment.