fix(core): update

This commit is contained in:
2024-02-18 23:23:20 +01:00
parent 2f175e9d64
commit 5412ab524b
3 changed files with 17 additions and 2 deletions
+4
View File
@@ -11,6 +11,10 @@ export class HetznerAccount {
return HetznerServer.getServers(this);
}
public async getServerByLabel(labelArg: string, valueArg?: string) {
return HetznerServer.getServerByLabel(this, labelArg, valueArg);
}
public async createServer(optionsArg: plugins.tsclass.typeFestOwn.SecondArgument<typeof HetznerServer.create>) {
return HetznerServer.create(this, optionsArg);
}