Skip to content

Commit

Permalink
fix(config): fix config function type return on complex config
Browse files Browse the repository at this point in the history
  • Loading branch information
sabinmarcu committed Aug 7, 2024
1 parent 72413ea commit 1f5132f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspaces/libs/config/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ export interface SimpleConfigFunction {
): Result extends TypeError ? Result : Observable<Result>;
}

export interface ConfigFunction extends SimpleConfigFunction, ComplexConfigFunction {}
export interface ConfigFunction extends ComplexConfigFunction, SimpleConfigFunction {}

0 comments on commit 1f5132f

Please sign in to comment.