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 4cf7f0a commit f7dddf7Copy full SHA for f7dddf7
index.d.ts
@@ -0,0 +1,30 @@
1
+import { PluginFunction } from 'vue';
2
+
3
+interface RunOptions {
4
+ clearConsole: boolean;
5
+ element: Document | HTMLElement;
6
+}
7
8
+export interface VueAxe
9
+{
10
+ run({ clearConsole, element }: RunOptions): void;
11
12
+ clearConsole(forceClear: boolean): void;
13
14
+ debounce(): void;
15
16
17
+declare module 'vue/types/vue'
18
19
+ interface Vue
20
+ {
21
+ $axe: VueAxe;
22
+ }
23
24
25
+declare class VueAxe
26
27
+ static install: PluginFunction<never>;
28
29
30
+export default VueAxe;
0 commit comments