refactor: improve type safety and code style
Some checks failed
CI / build-and-test (push) Failing after 24m31s

This commit is contained in:
sokol
2026-02-20 11:22:56 +03:00
parent 1c27b68965
commit e4b44c7b5e
7 changed files with 30 additions and 22 deletions

View File

@@ -97,7 +97,7 @@ export class Config {
* Updates template by adding placeholders for environment params
*/
public updateTemplateFromEnv(env: Env): void {
let templateObj: Record<string, any> = {};
let templateObj: Record<string, string> = {};
// Try to parse existing template
try {