@fivetrandevelopers/zetasql
Version:
ZetaSQL gRPC server and client
15 lines (14 loc) • 491 B
TypeScript
/// <reference types="long" />
import type { Long } from '@grpc/proto-loader';
export interface NumericTypeParametersProto {
'precision'?: (number | string | Long);
'isMaxPrecision'?: (boolean);
'scale'?: (number | string | Long);
'precisionParam'?: "precision" | "isMaxPrecision";
}
export interface NumericTypeParametersProto__Output {
'precision'?: (Long);
'isMaxPrecision'?: (boolean);
'scale': (Long);
'precisionParam': "precision" | "isMaxPrecision";
}