美文网首页
导入导出

导入导出

作者: 苍老师的眼泪 | 来源:发表于2022-09-16 02:15 被阅读0次
    // 导入类型定义的时候,可以在 类型定义前面加 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
    

    相关文章

      网友评论

          本文标题:导入导出

          本文链接:https://www.haomeiwen.com/subject/mpttnrtx.html