armpit
Version:
Another resource manager programming interface toolkit.
18 lines • 643 B
TypeScript
import { type ResourceSummary } from "./azureTypes.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?: readonly ResourceSummary[];
constructor(name: string, resources?: readonly ResourceSummary[]);
}
//# sourceMappingURL=errors.d.ts.map