@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
10 lines • 303 B
TypeScript
import type { VC } from "../VC";
import type { Predicate } from "./Predicate";
/**
* Always passes; used for e.g. globally accessed objects.
*/
export declare class True implements Predicate<never> {
readonly name: string;
check(_vc: VC): Promise<boolean>;
}
//# sourceMappingURL=True.d.ts.map