Skip to content

Commit 801d691

Browse files
committed
fix: rendering of @ in comments
1 parent f48d00f commit 801d691

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,21 @@ declare interface VMScriptGMInfoScriptMeta {
7070
inject_into: VMScriptInjectInto | null,
7171
noframes: boolean | null,
7272
override: {
73-
/** Keep the script's @exclude */
73+
/** Keep the script's `@exclude` */
7474
merge_excludes: boolean,
75-
/** Keep the script's @include */
75+
/** Keep the script's `@include` */
7676
merge_includes: boolean,
77-
/** Keep the script's @match */
77+
/** Keep the script's `@match` */
7878
merge_matches: boolean,
79-
/** Keep the script's @exclude-match */
79+
/** Keep the script's `@exclude-match` */
8080
merge_exclude_matches: boolean,
81-
/** User overridden @exclude */
81+
/** User overridden `@exclude` */
8282
use_excludes: string[],
83-
/** User overridden @include */
83+
/** User overridden `@include` */
8484
use_includes: string[],
85-
/** User overridden @match */
85+
/** User overridden `@match` */
8686
use_matches: string[],
87-
/** User overridden @exclude-match */
87+
/** User overridden `@exclude-match` */
8888
use_exclude_matches: string[],
8989
},
9090
run_at: VMScriptRunAt | null,

0 commit comments

Comments
 (0)