gpt4 book ai didi

javascript - 在 typescript 中,如何实现带有回调的接口(interface)?

转载 作者:行者123 更新时间:2023-12-03 03:56:15 28 4
gpt4 key购买 nike

我在 typescript 中创建了一个带有回调的接口(interface),如何实现它?

interface LoginCallback{
Error: boolean,
UserInfo: {
Id: string,
OrganizationId: string
}
}

interface IntegrationInterface {
Init(): void;
LogIn(UserName: string, Password: string, LoginCallback:LoginCallback): void;
}

最佳答案

您声明 LoginCallback 的方式意味着它只是一个对象而不是函数。我想这就是您想要的:

interface LoginCallback {
(Error: boolean, UserInfo: { Id: string, OrganizationId: string }): void;
}

interface IntegrationInterface {
Init(): void;
LogIn(UserName: string, Password: string, LoginCallback: LoginCallback): void;
}

然后要实现该接口(interface),您可以执行以下操作:

class IntegrationImpl implements IntegrationInterface {
Init() {
//...
}
LogIn(UserName: string, Password: string, LoginCallback: LoginCallback) {
//...
}

}

关于javascript - 在 typescript 中,如何实现带有回调的接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44932956/

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