refactor: Improve typings for element-ui imports (no-changelog) (#4678)

* convert all stories to typescript

* stricter typing for element-ui imports
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2022-11-25 10:51:51 +01:00
committed by GitHub
parent 78c66f16d6
commit 55c201eb21
53 changed files with 75 additions and 232 deletions

View File

@@ -32,7 +32,7 @@
</template>
<script lang="ts">
import ElSelect from 'element-ui/lib/select';
import { Select as ElSelect } from 'element-ui';
import Vue from 'vue';
export interface IProps {
@@ -44,7 +44,7 @@ export interface IProps {
export default Vue.extend({
name: 'n8n-select',
components: {
ElSelect, // eslint-disable-line @typescript-eslint/no-unsafe-assignment
ElSelect,
},
props: {
value: {},