You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

custom.d.ts 349B

123456789101112131415161718
  1. /**
  2. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. */
  5. declare module '*.svg?raw' {
  6. const content: string
  7. export default content
  8. }
  9. declare module '*.svg' {
  10. const content: any
  11. export default content
  12. }
  13. declare module '*.vue' {
  14. import Vue from 'vue'
  15. export default Vue
  16. }