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

来源:互联网 发布:vmware mac os 10.9 编辑:程序博客网 时间:2024/05/17 00:59

 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"
    ]
}

搞定。
0 0
原创粉丝点击