armpit
Version:
Another resource manager programming interface toolkit.
14 lines • 783 B
TypeScript
import { type Account, type ResourceSummary, type VirtualMachineCreateResult, isSubscriptionId, isTenantId } from "./azureUtils.js";
import { NameHash } from "./nameHash.js";
import { ExistingGroupLocationConflictError, GroupNotEmptyError } from "./errors.js";
import { AzGlobalInterface } from "./interface.js";
import { filterProperties, pickValues } from "./tsUtils.js";
export type { Account, ResourceSummary, VirtualMachineCreateResult };
declare const az: AzGlobalInterface;
declare const helpers: {
readonly filterProperties: typeof filterProperties;
readonly pickValues: typeof pickValues;
};
export default az;
export { az, helpers, isSubscriptionId, isTenantId, NameHash, ExistingGroupLocationConflictError, GroupNotEmptyError };
//# sourceMappingURL=index.d.ts.map