Skip to content

Commit 33be747

Browse files
committed
fix: Invalid signature for decorator
Closes #1174
1 parent 15ea85f commit 33be747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/utils/options/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export function BindOption<K extends keyof TypeDocOptionMap>(name: K):
341341
* This overload is intended for plugin use only with looser type checks. Do not use internally.
342342
*/
343343
export function BindOption(name: string):
344-
(target: { application: Application } | { options: Options }) => void;
344+
(target: { application: Application } | { options: Options }, key: PropertyKey) => void;
345345

346346
export function BindOption(name: string) {
347347
return function(target: { application: Application } | { options: Options }, key: PropertyKey) {

0 commit comments

Comments
 (0)