web/multinode: svg type error on build fix

Change-Id: If6249d36bd42790cdf37f5f99def5fadc956a935
This commit is contained in:
NickolaiYurchenko 2021-01-08 17:28:30 +02:00 committed by Nikolay Yurchenko
parent d11c2b709e
commit 889d2eaaea
2 changed files with 14 additions and 0 deletions

7
web/multinode/src/app/types/svg.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
declare module '*.svg' {
const content: any;
export default content;
}

7
web/multinode/src/app/types/vue.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
declare module '*.vue' {
import Vue from 'vue';
export default Vue;
}