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
@@ -279,10 +279,16 @@ export class SingleInstanceGithubCredentialsProvider
);
};
private readonly githubAppCredentialsMux: GithubAppCredentialsMux;
private readonly token?: string;
private constructor(
private readonly githubAppCredentialsMux: GithubAppCredentialsMux,
private readonly token?: string,
) {}
githubAppCredentialsMux: GithubAppCredentialsMux,
token?: string,
) {
this.githubAppCredentialsMux = githubAppCredentialsMux;
this.token = token;
}
/**
* Returns {@link GithubCredentials} for a given URL.