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

@@ -11,7 +11,7 @@ export interface IBuilder<T> {
export class Builder {
public static getEnv(env: Env): IBuilder<Env> {
let b = new EnvBuilder();
const b = new EnvBuilder();
b.src = env;
return b;
};