0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-20 21:20:14 +00:00
nextcloud_server/custom.d.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
349 B
TypeScript
Raw Permalink Normal View History

/**
* 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
}