zk-types 中文文档教程

发布于 2年前 浏览 11 更新于 2年前

ZK 框架

演示

npm i -D typescript zk-types
npx tsc --init

的 TypeScript 声明将 tsconfig.json 修改为:

{
    "compilerOptions": {
        "types": ["zk-types"]
    }
}

使用任意名称(例如 demo.ts)创建一个 TS 文件并开始输入:

const oldPanel = zk.augment(zul.wnd.Panel.prototype, {
    onClose(): void {
        alert('Modified zul.wnd.Panel.prototype.onClose');
        return oldPanel.onClose();
    }
})

编译为:

npx tsc

TypeScript Declarations for the ZK Framework

Demo

npm i -D typescript zk-types
npx tsc --init

Modify tsconfig.json to have:

{
    "compilerOptions": {
        "types": ["zk-types"]
    }
}

Create a TS file with whatever name (e.g., demo.ts) and start typing:

const oldPanel = zk.augment(zul.wnd.Panel.prototype, {
    onClose(): void {
        alert('Modified zul.wnd.Panel.prototype.onClose');
        return oldPanel.onClose();
    }
})

Compile with:

npx tsc
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文