aboutsummaryrefslogtreecommitdiffstats
path: root/custom.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'custom.d.ts')
-rw-r--r--custom.d.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/custom.d.ts b/custom.d.ts
new file mode 100644
index 00000000000..fe0412f260b
--- /dev/null
+++ b/custom.d.ts
@@ -0,0 +1,18 @@
+/**
+ * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+declare module '*.svg?raw' {
+ const content: string
+ export default content
+}
+
+declare module '*.svg' {
+ const content: any
+ export default content
+}
+
+declare module '*.vue' {
+ import Vue from 'vue'
+ export default Vue
+}