fix(editor): Fix various typecheck issues (no-changelog) (#8739)

This commit is contained in:
Alex Grozav
2024-02-26 16:05:12 +02:00
committed by GitHub
parent 09524304e6
commit c0be43bdbe
16 changed files with 91 additions and 74 deletions

View File

@@ -83,7 +83,7 @@
<script lang="ts">
import { defineComponent } from 'vue';
import type { IExecutionsSummary } from '@/Interface';
import type { ExecutionSummary } from '@/Interface';
import type { IExecutionUIData } from '@/mixins/executionsHelpers';
import { executionHelpers } from '@/mixins/executionsHelpers';
import { VIEWS } from '@/constants';
@@ -97,7 +97,7 @@ export default defineComponent({
mixins: [executionHelpers],
props: {
execution: {
type: Object as () => IExecutionsSummary,
type: Object as () => ExecutionSummary,
required: true,
},
highlight: {