UNPKG

@tinkoff/invest-js

Version:
55 lines (54 loc) 2.92 kB
import type { FieldOptions as _google_protobuf_FieldOptions, FieldOptions__Output as _google_protobuf_FieldOptions__Output } from '../../google/protobuf/FieldOptions'; export declare const _google_protobuf_FieldDescriptorProto_Label: { readonly LABEL_OPTIONAL: "LABEL_OPTIONAL"; readonly LABEL_REQUIRED: "LABEL_REQUIRED"; readonly LABEL_REPEATED: "LABEL_REPEATED"; }; export type _google_protobuf_FieldDescriptorProto_Label = 'LABEL_OPTIONAL' | 1 | 'LABEL_REQUIRED' | 2 | 'LABEL_REPEATED' | 3; export type _google_protobuf_FieldDescriptorProto_Label__Output = typeof _google_protobuf_FieldDescriptorProto_Label[keyof typeof _google_protobuf_FieldDescriptorProto_Label]; export declare const _google_protobuf_FieldDescriptorProto_Type: { readonly TYPE_DOUBLE: "TYPE_DOUBLE"; readonly TYPE_FLOAT: "TYPE_FLOAT"; readonly TYPE_INT64: "TYPE_INT64"; readonly TYPE_UINT64: "TYPE_UINT64"; readonly TYPE_INT32: "TYPE_INT32"; readonly TYPE_FIXED64: "TYPE_FIXED64"; readonly TYPE_FIXED32: "TYPE_FIXED32"; readonly TYPE_BOOL: "TYPE_BOOL"; readonly TYPE_STRING: "TYPE_STRING"; readonly TYPE_GROUP: "TYPE_GROUP"; readonly TYPE_MESSAGE: "TYPE_MESSAGE"; readonly TYPE_BYTES: "TYPE_BYTES"; readonly TYPE_UINT32: "TYPE_UINT32"; readonly TYPE_ENUM: "TYPE_ENUM"; readonly TYPE_SFIXED32: "TYPE_SFIXED32"; readonly TYPE_SFIXED64: "TYPE_SFIXED64"; readonly TYPE_SINT32: "TYPE_SINT32"; readonly TYPE_SINT64: "TYPE_SINT64"; }; export type _google_protobuf_FieldDescriptorProto_Type = 'TYPE_DOUBLE' | 1 | 'TYPE_FLOAT' | 2 | 'TYPE_INT64' | 3 | 'TYPE_UINT64' | 4 | 'TYPE_INT32' | 5 | 'TYPE_FIXED64' | 6 | 'TYPE_FIXED32' | 7 | 'TYPE_BOOL' | 8 | 'TYPE_STRING' | 9 | 'TYPE_GROUP' | 10 | 'TYPE_MESSAGE' | 11 | 'TYPE_BYTES' | 12 | 'TYPE_UINT32' | 13 | 'TYPE_ENUM' | 14 | 'TYPE_SFIXED32' | 15 | 'TYPE_SFIXED64' | 16 | 'TYPE_SINT32' | 17 | 'TYPE_SINT64' | 18; export type _google_protobuf_FieldDescriptorProto_Type__Output = typeof _google_protobuf_FieldDescriptorProto_Type[keyof typeof _google_protobuf_FieldDescriptorProto_Type]; export interface FieldDescriptorProto { 'name'?: (string); 'extendee'?: (string); 'number'?: (number); 'label'?: (_google_protobuf_FieldDescriptorProto_Label); 'type'?: (_google_protobuf_FieldDescriptorProto_Type); 'typeName'?: (string); 'defaultValue'?: (string); 'options'?: (_google_protobuf_FieldOptions | null); 'oneofIndex'?: (number); 'jsonName'?: (string); } export interface FieldDescriptorProto__Output { 'name': (string); 'extendee': (string); 'number': (number); 'label': (_google_protobuf_FieldDescriptorProto_Label__Output); 'type': (_google_protobuf_FieldDescriptorProto_Type__Output); 'typeName': (string); 'defaultValue': (string); 'options': (_google_protobuf_FieldOptions__Output | null); 'oneofIndex': (number); 'jsonName': (string); }