diff --git a/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer-class.ts b/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer-class.ts index 1104cb340..251ac7812 100644 --- a/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer-class.ts +++ b/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer-class.ts @@ -20,7 +20,7 @@ export class DeclarativeComponentRenderer { registerLuaScript(this.state, scriptId, script) } - async executeLuaScript(scriptId: string, params: any[]): Promise { + async executeLuaScript(scriptId: string, params: unknown[]): Promise { return executeLuaScript(this.state, scriptId, params) } @@ -32,15 +32,15 @@ export class DeclarativeComponentRenderer { return hasComponentConfig(this.state, componentType) } - interpolateValue(template: string, context: Record): string { + interpolateValue(template: string, context: Record): string { return interpolateValue(template, context) } - evaluateConditional(condition: string | boolean, context: Record): boolean { + evaluateConditional(condition: string | boolean, context: Record): boolean { return evaluateConditional(condition, context) } - resolveDataSource(dataSource: string, context: Record): any[] { + resolveDataSource(dataSource: string, context: Record): unknown[] { return resolveDataSource(dataSource, context) } }