aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/clk.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-util/src/clk.ts')
-rw-r--r--packages/taler-util/src/clk.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-util/src/clk.ts b/packages/taler-util/src/clk.ts
index 9e80a84c7..60969af69 100644
--- a/packages/taler-util/src/clk.ts
+++ b/packages/taler-util/src/clk.ts
@@ -26,7 +26,7 @@ import {
import { AmountString } from "./taler-types.js";
export namespace clk {
- class Converter<T> { }
+ class Converter<T> {}
export const INT = new Converter<number>();
export const STRING: Converter<string> = new Converter<string>();
@@ -121,7 +121,7 @@ export namespace clk {
private argKey: string,
private name: string | null,
private scArgs: SubcommandArgs,
- ) { }
+ ) {}
action(f: ActionFn<TG>): void {
if (this.myAction) {
@@ -617,8 +617,8 @@ export namespace clk {
export type GetArgType<T> = T extends Program<any, infer AT>
? AT
: T extends CommandGroup<any, infer AT>
- ? AT
- : any;
+ ? AT
+ : any;
export function program<PN extends keyof any>(
argKey: PN,