directix 1.5.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,40 @@
1
+ /*!
2
+ * directix v1.7.0
3
+ * A comprehensive, easy-to-use, and high-performance Vue custom directives library supporting both Vue 2 and Vue 3
4
+ * (c) 2021-present saqqdy <https://github.com/saqqdy>
5
+ * Released under the MIT License.
6
+ */
7
+ import type { NuxtModule } from '@nuxt/schema'
8
+
9
+ export interface ModuleOptions {
10
+ /**
11
+ * Whether to enable the module
12
+ * @default true
13
+ */
14
+ enabled?: boolean
15
+
16
+ /**
17
+ * Directives to include (if not specified, all directives are included)
18
+ */
19
+ include?: string[]
20
+
21
+ /**
22
+ * Directives to exclude
23
+ */
24
+ exclude?: string[]
25
+
26
+ /**
27
+ * Default options for specific directives
28
+ */
29
+ directiveOptions?: Record<string, any>
30
+
31
+ /**
32
+ * Whether to auto-import composables
33
+ * @default true
34
+ */
35
+ autoImportComposables?: boolean
36
+ }
37
+
38
+ declare const directixModule: NuxtModule<ModuleOptions>
39
+
40
+ export default directixModule