@clickup/ent-framework
Version:
A PostgreSQL graph-database-alike library with microsharding and row-level security
13 lines • 422 B
TypeScript
import type { VC } from "../VC";
import type { VCFlavor } from "../VCFlavor";
import type { Predicate } from "./Predicate";
/**
* Checks that the VC has some flavor.
*/
export declare class VCHasFlavor implements Predicate<never> {
private Flavor;
readonly name: string;
constructor(Flavor: new (...args: never[]) => VCFlavor);
check(vc: VC): Promise<boolean>;
}
//# sourceMappingURL=VCHasFlavor.d.ts.map