@fivetrandevelopers/zetasql
Version:
ZetaSQL gRPC server and client
19 lines (18 loc) • 965 B
TypeScript
/// <reference types="long" />
import type { ResolvedExprProto as _zetasql_ResolvedExprProto, ResolvedExprProto__Output as _zetasql_ResolvedExprProto__Output } from '../zetasql/ResolvedExprProto';
import type { ValueWithTypeProto as _zetasql_ValueWithTypeProto, ValueWithTypeProto__Output as _zetasql_ValueWithTypeProto__Output } from '../zetasql/ValueWithTypeProto';
import type { Long } from '@grpc/proto-loader';
export interface ResolvedLiteralProto {
'parent'?: (_zetasql_ResolvedExprProto | null);
'value'?: (_zetasql_ValueWithTypeProto | null);
'hasExplicitType'?: (boolean);
'floatLiteralId'?: (number | string | Long);
'preserveInLiteralRemover'?: (boolean);
}
export interface ResolvedLiteralProto__Output {
'parent': (_zetasql_ResolvedExprProto__Output | null);
'value': (_zetasql_ValueWithTypeProto__Output | null);
'hasExplicitType': (boolean);
'floatLiteralId': (Long);
'preserveInLiteralRemover': (boolean);
}