armpit
Version:
Another resource manager programming interface toolkit.
18 lines • 625 B
TypeScript
import { type ResourceSummary } from "./azureUtils.js";
export declare class ExistingGroupLocationConflictError extends Error {
groupName: string;
expectedLocation: string;
actualLocation: string;
constructor(actual: {
name?: string;
location?: string;
}, expected: string);
constructor(name: string, actual: string, expected: string);
}
export declare class GroupNotEmptyError extends Error {
private static buildMessage;
groupName: string;
resources?: ResourceSummary[];
constructor(name: string, resources?: ResourceSummary[]);
}
//# sourceMappingURL=errors.d.ts.map