We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ea85f commit 33be747Copy full SHA for 33be747
src/lib/utils/options/options.ts
@@ -341,7 +341,7 @@ export function BindOption<K extends keyof TypeDocOptionMap>(name: K):
341
* This overload is intended for plugin use only with looser type checks. Do not use internally.
342
*/
343
export function BindOption(name: string):
344
- (target: { application: Application } | { options: Options }) => void;
+ (target: { application: Application } | { options: Options }, key: PropertyKey) => void;
345
346
export function BindOption(name: string) {
347
return function(target: { application: Application } | { options: Options }, key: PropertyKey) {
0 commit comments