Skip to content

Commit db59295

Browse files
authored
fix(types): wrap inline function w/ parenthesis (#19)
1 parent e31d442 commit db59295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ley.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
declare namespace Options {
22
declare type Config = Record<string, unknown>;
3-
declare type Resolver = Promise<Config> | () => Config;
3+
declare type Resolver = Promise<Config> | (() => Config);
44

55
declare interface Base {
66
cwd?: string;

0 commit comments

Comments
 (0)