refactor: trim provider internal exports

This commit is contained in:
Peter Steinberger
2026-05-01 15:16:02 +01:00
parent c2ffe77926
commit 05f607c149
4 changed files with 9 additions and 11 deletions

View File

@@ -53,7 +53,7 @@ export function execAz(args: string[]): string {
);
}
export async function execAzAsync(args: string[]): Promise<string> {
async function execAzAsync(args: string[]): Promise<string> {
return await new Promise<string>((resolve, reject) => {
execFile(
"az",