Skip to content

Commit

Permalink
fix: allowed optional properties on Deployers
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Dec 30, 2022
1 parent 1cc7e07 commit 941abda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ export namespace Deployer {
* ```
*/
export type Options<T = AnyJson> = JsonMap & {
[key: string]: T;
[key: string]: T | undefined;
};
}

0 comments on commit 941abda

Please sign in to comment.