大约有 11 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
...,debug出错 I/LayaBox: alert=undefined:5155: SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode let runtime = json.props.runtime; ^^^ SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode ...
来源: Laya_社区 发布时间: 20180724
... JSX code generation: 'preserve', 'react-native', or 'react'. */ // "declaration": true, /* Generates corresponding '.d.ts' file. */ // "sourceMap": true, /* Generates corresponding '.map' file. */ // "outFile": "./", ...
来源: Laya_社区 发布时间: 20190408
...的LayaAir.d.ts的MiniAdpter只有一个接口 类库版本:1.7.19.1beta declare module laya.wx.mini { class MiniAdpter { /** * 初始化回调 * @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false * @param isSon 是否是子域,默认为fal...
来源: Laya_社区 发布时间: 20180612
...TS的小游戏工程,但是在MiniAdpter的类声明中只有init方法 declare module laya.wx.mini { class MiniAdpter { /** * 初始化回调 * @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false * @param isSon 是否是子域,默认为fals...
来源: Laya_社区 发布时间: 20180808
...目的libs目录中新建一个d.ts,写入画圆角矩形的函数声明 declare namespace laya.display { interface Graphics { /** * 绘制圆角矩形。 * @param x 开始绘制的 X 轴位置。 * @param y 开始...
来源: Laya_社区 发布时间: 20210123
...: 2 人 陆仁毅 • 2019-07-30 18:01 改下protobuf的d.ts。export=>declare。然后把namespace的相关引用改下就行。或者把js放到d.ts同级,把js改成es6 Channel.F • 2019-07-30 18:16 辛苦大神, 我先试试,那如果第二个方案,我把js放到d.ts的那个文件...
来源: Laya_社区 发布时间: 20190730
...例子 还有发现 layaedotor.d.ts 里面的GraphicAnimation找不到 declare module laya.editorUI { /** * Graphics解析器 */ // class GraphicParser extends laya.display.GraphicAnimation { // protected _getTextureByUrl(url: string): string; // ...
来源: Laya_社区 发布时间: 20170817
... pb2.d.ts和protobufjs.d.ts也有问题,别用export as namespace 用 declare module 代码已改。下载改后的项目你试试。 myLaya2D.zip 2019-02-20 2 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起...
来源: Laya_社区 发布时间: 20190220
使用layaide进行打包,提示如下错误。 Block-scoped declarations (let, const, function, class) not yet supported outside strict mode 网上搜索答案,有的说是因为在tsconfig中,将target调整成了es6就不可以运行了,但是我的代码使用了一些es6的特性,...
来源: Laya_社区 发布时间: 20170604
...,API也就几个函数,自行扩展另说,拿我自己的先抛个砖declare class PomeloClient { init(params:any, cb?:Function); request(route:string, msg?:any, cb?:Function); notify(route:string, params:any); on(event:string, cb:Function); off(event:string, cb:Function); disconnect(); } 我...
来源: Laya_社区 发布时间: 20180109