Skip to content

Commit

Permalink
refactor: ♻️ 修复InputType导入时未指定为type的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonofweisheng committed Sep 23, 2024
1 parent c7c00d6 commit c445bd1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
* @Author: weisheng
* @Date: 2024-04-08 22:34:01
* @LastEditTime: 2024-09-21 15:51:27
* @LastEditTime: 2024-09-23 15:59:04
* @LastEditors: weisheng
* @Description:
* @FilePath: \wot-design-uni\src\uni_modules\wot-design-uni\components\wd-message-box\types.ts
* 记得注释
*/
import { baseProps } from '../common/props'
import { InputType } from '../wd-input/types'
import { type InputType } from '../wd-input/types'

export type MessageType = 'alert' | 'confirm' | 'prompt'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import {
import { defaultOptions, messageDefaultOptionKey } from '.'
import { isDef, isFunction } from '../common/util'
import { useTranslate } from '../composables/useTranslate'
import { InputType } from '../wd-input/types'
import { type InputType } from '../wd-input/types'
const props = defineProps(messageBoxProps)
Expand Down

0 comments on commit c445bd1

Please sign in to comment.