Skip to content

Commit

Permalink
fix: make before param optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed May 7, 2023
1 parent bce79e4 commit 6d658a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspaces/types/types/environment/environment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@ export type BaseEnvironment<A = InputOutputAdapter, S extends Store = Store> = {
* @param priority
* @param before
*/
addPriority(priority: string, before: string): void;
addPriority(priority: string, before?: string): void;
};

0 comments on commit 6d658a2

Please sign in to comment.