refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility

Signed-off-by: Paul Schultz <pschultz@pobox.com>
This commit is contained in:
Paul Schultz
2025-09-16 12:29:49 -05:00
parent b3a437e15d
commit 05f60e1e0a
167 changed files with 1826 additions and 679 deletions
@@ -65,7 +65,11 @@ import {
export class MockActionsRegistry
implements ActionsRegistryService, ActionsService
{
private constructor(private readonly logger: LoggerService) {}
private readonly logger: LoggerService;
private constructor(logger: LoggerService) {
this.logger = logger;
}
static create(opts: { logger: LoggerService }) {
return new MockActionsRegistry(opts.logger);