Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp committed May 24, 2024
1 parent 4f5e7cb commit 42a3506
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { logger } from "./logger";
export type SpecType<T> = T extends { type: "string" }
? string
: T extends { type: "number" }
? number
: T extends { type: "boolean" }
? boolean
: never;
? number
: T extends { type: "boolean" }
? boolean
: never;

function resolveConfig(): ConfigObject {
const specs = ConfigManager.loadSpecsFromYaml(`env.faucet.config.json`);
Expand Down

0 comments on commit 42a3506

Please sign in to comment.