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