Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
bug_fix, enhancement
Description
src/components/shared/InputSelectSingle.vue
で、インポート文にセミコロンを追加し、ValueValue
型をunknown
からany
に変更しました。src/components/shared/MarkdownTextarea.vue
で、インポート文にセミコロンを追加し、setTemplate
関数の型をany
に変更しました。src/env.d.ts
で、DefineComponent
の型をunknown
からany
に変更し、eslintのコメントを追加しました。Changes walkthrough 📝
InputSelectSingle.vue
Adjust type definition and import formatting
src/components/shared/InputSelectSingle.vue
ValueValue
type to useany
instead ofunknown
.MarkdownTextarea.vue
Update type usage and import formatting
src/components/shared/MarkdownTextarea.vue
setTemplate
function to useany
type.env.d.ts
Refactor type definitions with eslint adjustments
src/env.d.ts
DefineComponent
type to useany
instead ofunknown
.