mirror of https://github.com/grpc/grpc-node.git
14 lines
487 B
TypeScript
14 lines
487 B
TypeScript
// Original file: null
|
|
|
|
import type { IUninterpretedOption as I_google_protobuf_UninterpretedOption, OUninterpretedOption as O_google_protobuf_UninterpretedOption } from '../../google/protobuf/UninterpretedOption';
|
|
|
|
export interface IEnumValueOptions {
|
|
'deprecated'?: (boolean);
|
|
'uninterpretedOption'?: (I_google_protobuf_UninterpretedOption)[];
|
|
}
|
|
|
|
export interface OEnumValueOptions {
|
|
'deprecated': (boolean);
|
|
'uninterpretedOption': (O_google_protobuf_UninterpretedOption)[];
|
|
}
|