diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-18 09:43:29 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-20 09:06:57 +0200 |
commit | bb4d7969b93c806e4f578ecc5a6d04bb6bebee73 (patch) | |
tree | e6247c554d7e136042e0913f370f37ff1467ac37 /custom.d.ts | |
parent | c85c04e4a8495eb04419a27a8e162c03acad6282 (diff) | |
download | nextcloud-server-bb4d7969b93c806e4f578ecc5a6d04bb6bebee73.tar.gz nextcloud-server-bb4d7969b93c806e4f578ecc5a6d04bb6bebee73.zip |
feat(files): add default action support
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'custom.d.ts')
-rw-r--r-- | custom.d.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/custom.d.ts b/custom.d.ts index 80fc7ccf9e1..7f6487fb835 100644 --- a/custom.d.ts +++ b/custom.d.ts @@ -19,7 +19,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ -declare module '*.svg' { +declare module '*.svg?raw' { const content: any export default content } @@ -28,4 +28,3 @@ declare module '*.vue' { import Vue from 'vue' export default Vue } - |