gpt4 book ai didi

javascript - typescript 中的私有(private)接口(interface)

转载 作者:行者123 更新时间:2023-11-30 08:45:43 26 4
gpt4 key购买 nike

在 typescript 中,界面是否总是需要导出。在以下情况下出现错误:

错误 TS2019:导出类“Test”实现私有(private)接口(interface)“ITest”。

module xxx { 
interface ITest {
}

export class Test implements ITest {
}
}

最佳答案

在你的情况下是的。如果你想导出实现它的类,你需要:

module xxx { 
export interface ITest {
name: string
}

export class Test implements ITest {
name = "ddsd"
constructor() {
...
}
}
}

或者,您可以将 ITest 移到外面:

interface ITest {
name: string
}

module xxx {

export class Test implements ITest {
name = "ddsd"
constructor() {
...
}
}
}

关于javascript - typescript 中的私有(private)接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22214226/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com