import { ProtobufScalarTypes } from './ProtobufScalarTypes'; import { IProtobufTypeCtor } from './IProtobufTypeCtor'; import { IProtobufEnumCtor } from './IProtobufEnumCtor'; export type TProtobufFieldDescriptorArray = { /** * Field ID */ [0]: number; /** * Field name */ [1]: string; /** * Field type */ [2]: ProtobufScalarTypes | IProtobufTypeCtor | IProtobufEnumCtor; };