diff --git a/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer.ts b/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer.ts index 35baf8331..e1c182cab 100644 --- a/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer.ts +++ b/frontends/nextjs/src/lib/rendering/declarative-component-renderer/renderer/renderer.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) } }