fix: Change YargsCliExtractor structure to avoid Components.js issues

This commit is contained in:
Joachim Van Herwegen
2022-04-21 10:54:06 +02:00
parent 1de1f7c12a
commit 6f4e70dbb9
6 changed files with 148 additions and 96 deletions

View File

@@ -15,7 +15,7 @@ export class FixedInteractionHandler extends InteractionHandler {
/**
* @param response - @range {json}
*/
public constructor(response: unknown) {
public constructor(response: Record<string, unknown>) {
super();
this.response = JSON.stringify(response);
}