Skip to content

Commit db3ed40

Browse files
stephenmathiesonWilcoFiers
authored andcommitted
fix(axe.d.ts): correct Check.evaluate and Check.after types (#976)
* fix(axe.d.ts): correct `Check.evaluate` and `Check.after` types These types may either be a string or a function. Closes #974 * ci: trigger build
1 parent fedf6e9 commit db3ed40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

axe.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ declare module axe {
8383
}
8484
interface Check {
8585
id: string,
86-
evaluate: Function,
87-
after?: Function,
86+
evaluate: Function | string,
87+
after?: Function | string,
8888
options?: any,
8989
matches?: string,
9090
enabled?: boolean

0 commit comments

Comments
 (0)