Skip to content

Commit

Permalink
fix: fix config loader scope of type compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoGathK committed Oct 15, 2022
1 parent a4af45b commit 1e5bc30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/interface/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export interface IConfigLoader {
*
* @publicApi
*/
execute: <T = any>() => T;
execute: <T = any>() => T | Promise<T>;
}

export interface IConfigPoller {
Expand Down

0 comments on commit 1e5bc30

Please sign in to comment.