Files
kiss-flixel/feedback-server/externs/global/nodejs/Module.hx

17 lines
359 B
Haxe

package global.nodejs;
typedef Module = {
/**
`true` if the module is running during the Node.js preload
**/
var isPreloading : Bool;
var exports : Dynamic;
var require : Require;
var id : String;
var filename : String;
var loaded : Bool;
var parent : Null<Module>;
var children : Array<Module>;
var path : String;
var paths : Array<String>;
};