(keys: string[], value: unknown[])
| 185 | return `${title} = `; |
| 186 | } |
| 187 | #arrayDeclaration(keys: string[], value: unknown[]): string { |
| 188 | return `${this.#declaration(keys)}${JSON.stringify(value)}`; |
| 189 | } |
| 190 | #strDeclaration(keys: string[], value: string): string { |
| 191 | return `${this.#declaration(keys)}${JSON.stringify(value)}`; |
| 192 | } |
no test coverage detected