【h5-egret】js加载成第三方库

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/edisonbeok/article/details/48274455

 js:

JS下面写的方法:
function jsFunc(){
window.alert("hello world");
}


ts:

TS下面对应的是:

declare function jsFunc(): void;


然后还有一个引入的test.json
{
    "name": "test",
    "dependence": ["core"],
    "source":"./",
    "file_list": [
        "test.js",
        "test.d.ts"
    ]
}

搞定。

猜你喜欢

转载自blog.csdn.net/edisonbeok/article/details/48274455