@fivetrandevelopers/zetasql
Version:
ZetaSQL gRPC server and client
8 lines (7 loc) • 333 B
TypeScript
export declare const ParameterMode: {
readonly PARAMETER_NAMED: 0;
readonly PARAMETER_POSITIONAL: 1;
readonly PARAMETER_NONE: 2;
};
export type ParameterMode = 'PARAMETER_NAMED' | 0 | 'PARAMETER_POSITIONAL' | 1 | 'PARAMETER_NONE' | 2;
export type ParameterMode__Output = typeof ParameterMode[keyof typeof ParameterMode];