mirror of https://github.com/grpc/grpc-node.git
16 lines
499 B
TypeScript
16 lines
499 B
TypeScript
// Original file: null
|
|
|
|
import type { IEnumValueOptions as I_google_protobuf_EnumValueOptions, OEnumValueOptions as O_google_protobuf_EnumValueOptions } from '../../google/protobuf/EnumValueOptions';
|
|
|
|
export interface IEnumValueDescriptorProto {
|
|
'name'?: (string);
|
|
'number'?: (number);
|
|
'options'?: (I_google_protobuf_EnumValueOptions | null);
|
|
}
|
|
|
|
export interface OEnumValueDescriptorProto {
|
|
'name': (string);
|
|
'number': (number);
|
|
'options': (O_google_protobuf_EnumValueOptions | null);
|
|
}
|