haxiomic / dts2hx

Converts TypeScript definition files (d.ts) to haxe externs (.hx) via the TypeScript compiler API
MIT License
134 stars 9 forks source link

get_value() should be private for value-classes #87

Open haxiomic opened 3 years ago

haxiomic commented 3 years ago
@:jsRequire("cheerio") extern class Cheerio {
    static var value(get, never) : cheerio.CheerioAPI;
    static inline function get_value():cheerio.CheerioAPI return cast Cheerio;
}