More fixes

This commit is contained in:
Daniel Hougaard
2024-08-30 07:20:12 +04:00
parent 7fd8c56cc8
commit 6cb5ebfef2
3 changed files with 37 additions and 27 deletions

View File

@@ -45,7 +45,7 @@ const convertBool = (value: boolean | undefined) => (value ? "true" : "false");
export default class SecretsClient {
#apiInstance: InfisicalApi;
constructor(private apiInstance: InfisicalApi) {
constructor(apiInstance: InfisicalApi) {
this.#apiInstance = apiInstance;
}