mirror of https://github.com/grpc/grpc-node.git
predefined options should always be returned with their default value
This commit is contained in:
parent
4c185fa2e6
commit
260966c070
|
@ -137,9 +137,9 @@ export interface UninterpretedOption {
|
|||
}
|
||||
|
||||
export interface MethodOptions {
|
||||
deprecated?: boolean;
|
||||
idempotency_level?: IdempotencyLevel|keyof typeof IdempotencyLevel;
|
||||
uninterpreted_option?: UninterpretedOption;
|
||||
deprecated: boolean;
|
||||
idempotency_level: IdempotencyLevel|keyof typeof IdempotencyLevel;
|
||||
uninterpreted_option: UninterpretedOption;
|
||||
[k: string]: unknown;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue