aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FileEntry/FileEntryActions.vue
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-02-07 16:34:36 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2024-02-13 18:04:45 +0100
commitb758e0496e7982dc89361902e6a0ccc9a72b4795 (patch)
tree2fcf2ed9af1067a1ab624fc545a1807f39e7ef5c /apps/files/src/components/FileEntry/FileEntryActions.vue
parent8822b16d37de1d1a3cec959d184261152c42ae41 (diff)
downloadnextcloud-server-b758e0496e7982dc89361902e6a0ccc9a72b4795.tar.gz
nextcloud-server-b758e0496e7982dc89361902e6a0ccc9a72b4795.zip
fix: Correctly import types in Typescript files
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files/src/components/FileEntry/FileEntryActions.vue')
-rw-r--r--apps/files/src/components/FileEntry/FileEntryActions.vue8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue
index 5dae3509f3b..393b8fd10ce 100644
--- a/apps/files/src/components/FileEntry/FileEntryActions.vue
+++ b/apps/files/src/components/FileEntry/FileEntryActions.vue
@@ -93,18 +93,20 @@
</template>
<script lang="ts">
+import type { PropType } from 'vue'
+
import { DefaultType, FileAction, Node, NodeStatus, View, getFileActions } from '@nextcloud/files'
import { showError, showSuccess } from '@nextcloud/dialogs'
import { translate as t } from '@nextcloud/l10n'
-import Vue, { PropType } from 'vue'
-import ArrowLeftIcon from 'vue-material-design-icons/ArrowLeft.vue'
-import ChevronRightIcon from 'vue-material-design-icons/ChevronRight.vue'
import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js'
import NcActions from '@nextcloud/vue/dist/Components/NcActions.js'
import NcActionSeparator from '@nextcloud/vue/dist/Components/NcActionSeparator.js'
import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js'
import NcLoadingIcon from '@nextcloud/vue/dist/Components/NcLoadingIcon.js'
+import ArrowLeftIcon from 'vue-material-design-icons/ArrowLeft.vue'
+import ChevronRightIcon from 'vue-material-design-icons/ChevronRight.vue'
+import Vue from 'vue'
import CustomElementRender from '../CustomElementRender.vue'
import logger from '../../logger.js'