/opt/canhelp/node_modules/gel/dist/reflection/queries
Edit: /opt/canhelp/node_modules/gel/dist/reflection/queries/globals.d.ts (421B)
import type { Executor } from "../../ifaces";
import type { Cardinality } from "../enums";
import type { UUID } from "./queryTypes";
import type { StrictMap } from "../strictMap";
export type Global = {
id: UUID;
name: string;
has_default: boolean;
target_id: UUID;
card: Cardinality;
};
export type Globals = StrictMap
;
export declare function globals(cxn: Executor): Promise;