@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
11 lines • 439 B
TypeScript
import type { RowWithID } from "../../types";
import { EntAccessError } from "./EntAccessError";
/**
* Error: thrown when an Ent cannot be updated or deleted due to privacy reasons.
*/
export declare class EntNotUpdatableError extends EntAccessError {
readonly vc: string;
readonly row: RowWithID;
constructor(entName: string, vc: string, row: RowWithID, cause?: unknown);
}
//# sourceMappingURL=EntNotUpdatableError.d.ts.map