// 导入类型定义的时候,可以在 类型定义前面加 type
// import { type Animal, n } from './animal'
// 或者
import type { Animal } from './animal'
import { n } from './animal'
let dog: Animal = {
breath() {
console.log('breath')
}
}
dog.breath()
console.log(n)
animal.ts
export type Animal = {
breath: () => void
}
export const n = 20
网友评论