Skip to content

Commit

Permalink
predefined options should always be returned with their default value
Browse files Browse the repository at this point in the history
  • Loading branch information
n0v1 committed Apr 5, 2024
1 parent 4c185fa commit 260966c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/proto-loader/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 260966c

Please # to comment.