I want to export several interfaces together with Component from .vue file.
Basic.vue:
<template>
<div class="app">
<router-view></router-view>
</div>
</template>
<script lang="ts">
import { Vue, Component } from "vue-property-decorator";
export interface IBasic {
name :string;
}
/**
* Simplest container
*/
@Component
export class Basic extends Vue {}
export default Basic;
</script>
But when I import it from another .ts file, I got:
What can I do to import the interface successfully?


IBasicinto its own file that could be imported by whatever needs it?