Skip to content

Commit

Permalink
fix(types): wrap inline function w/ parenthesis (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn authored Apr 14, 2021
1 parent e31d442 commit db59295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ley.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare namespace Options {
declare type Config = Record<string, unknown>;
declare type Resolver = Promise<Config> | () => Config;
declare type Resolver = Promise<Config> | (() => Config);

declare interface Base {
cwd?: string;
Expand Down

0 comments on commit db59295

Please sign in to comment.