import { ProtobufScalarTypes } from './ProtobufScalarTypes'; import { IProtobufTypeCtor } from './IProtobufTypeCtor'; import { IProtobufEnumCtor } from './IProtobufEnumCtor'; export type TProtobufFieldDescriptorObject = { id: number; name: string; type: ProtobufScalarTypes | IProtobufTypeCtor | IProtobufEnumCtor; };