@pagopa/dx-cli
Version:
A CLI useful to manage DX tools.
13 lines (12 loc) • 416 B
TypeScript
import type { TokenCredential } from "@azure/identity";
import { type CloudAccountRepository } from "../../domain/cloud-account.js";
export declare class AzureSubscriptionRepository implements CloudAccountRepository {
#private;
constructor(credential: TokenCredential);
list(): Promise<{
csp: "azure";
defaultLocation: string;
displayName: string;
id: string;
}[]>;
}