Mr zhan

Results 83 issues of Mr zhan

here is some test class Engine.d.ts ```ts export declare class Engine { get canvas(): Canvas; } ``` WebGLEngine.d.ts ```ts export declare class WebGLEngine extends Engine { get canvas(): WebCanvas; }...

waiting-on-haxe-compiler-changes

Question: how to use dts2hx work with lix ? dts2hx will gen haxelib into project root .but lix need another path projectroot/haxe_libraries/three.hxml is there any plans support that?

enhancement

Is dts2hx support folder batch gen? current I have to use a command-line like these, but this cmd is too long to excute. Is dts2hx support folder batch gen? ```haxe...

ts.AnyOf issue. some gen class have some fields like ```haxe var geometry : ts.AnyOf2; geometry .AProperty=1;//current will throw error. geometry.BProperty=2;//current will throw error. ``` //is possible to do something like...

enhancement

Some class was wrong name 'Default' `npm install @ethereumjs/tx` path `ethereumjs-common\1,5,2\ethereumjs_common\**Default.hx**` was wrong , should be **Common.hx** typescript `export default class Common extends EventEmitter {`

bug

I use dts2hx for [libp2p ](https://github.com/libp2p/js-libp2p) node_modules\libp2p-interfaces\dist\src\transport\types.d.ts ```ts export interface TransportFactory { new(upgrader: Upgrader): Transport; } ``` will gen wrong code here ```haxe package libp2p.dist.src.transport_manager; typedef TransportFactory = libp2p_interfaces.dist.src.transport.types.TransportFactory; ```...

current I found https://github.com/dmitryhryppa/vue.hx and what I want to ask is dts2hx support vue now?

enhancement

from web3.js ```haxe export class Eth { Contract: new ( jsonInterface: AbiItem[] | AbiItem, address?: string, options?: ContractOptions ) => Contract; Iban: new (iban: string) => Iban; ``` and call...

from cocoscreator .ts ```js { requireComponent?: Function } ``` convert to haxe ```haxe var requireComponent : haxe.Constraints.Function ``` when I convert from js ```js { requireComponent: dragonBones.ArmatureDisplay; } ``` to...

`npx dts2hx @tensorflow/tfjs` https://www.tensorflow.org/js/guide/layers_for_keras_users?hl=en I can't find any api like `tf.layers.dense` ![image](https://user-images.githubusercontent.com/748320/98349901-8aec8f00-2055-11eb-87fe-e41ff2d5c5a6.png) ![image](https://user-images.githubusercontent.com/748320/98349727-5678d300-2055-11eb-953f-58a2f9085dba.png) where is wrong here. test.ts when I use typescript. ![image](https://user-images.githubusercontent.com/748320/98350581-81175b80-2056-11eb-8750-c223b6bdc5be.png) maybe there is some bug here? ![image](https://user-images.githubusercontent.com/748320/98350871-e3705c00-2056-11eb-8446-4d86d5f5fad2.png)

bug