Skip to content

Commit 260966c

Browse files
committed
predefined options should always be returned with their default value
1 parent 4c185fa commit 260966c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/proto-loader/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ export interface UninterpretedOption {
137137
}
138138

139139
export interface MethodOptions {
140-
deprecated?: boolean;
141-
idempotency_level?: IdempotencyLevel|keyof typeof IdempotencyLevel;
142-
uninterpreted_option?: UninterpretedOption;
140+
deprecated: boolean;
141+
idempotency_level: IdempotencyLevel|keyof typeof IdempotencyLevel;
142+
uninterpreted_option: UninterpretedOption;
143143
[k: string]: unknown;
144144
}
145145

0 commit comments

Comments
 (0)