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; var children : Array; var path : String; var paths : Array; };