Cleanup socketio stuff for typescript

This commit is contained in:
Dane Everitt 2018-12-16 18:57:34 -08:00
parent 3ad4422a94
commit 5e4ca8ef83
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
22 changed files with 246 additions and 210 deletions

View file

@ -24,7 +24,7 @@
<script>
import Status from '../../../helpers/statuses';
import { Socketio } from './../../../mixins/socketio';
import { Socketio } from '../../../mixins/socketio/index';
import { mapState } from 'vuex';
export default {

View file

@ -15,7 +15,7 @@
</template>
<script>
import * as Helpers from './../../../../helpers/index';
import * as Helpers from '../../../../helpers/index';
import { FileTextIcon, Link2Icon } from 'vue-feather-icons';
import FileManagerContextMenu from './FileManagerContextMenu';

View file

@ -16,7 +16,7 @@
<script>
import { FolderIcon } from 'vue-feather-icons';
import { formatDate } from './../../../../helpers/index';
import { formatDate } from '../../../../helpers/index';
export default {
name: 'file-manager-folder-row',