the plugin
if true
will allow provided plugin to overwrite any method added by any plugin
returns a track of added methods
returns a track of added plugin
sort the plugins methods
if sort
is true the methods will be sorted as following
static method for File then non-static methods for File then the same for Dir then Shape
Generated using TypeDoc
adds plugins to the core library plugins is a way to add methods to the core class like File, Dir, etc...
addPlugin({ name: "xml", plugin: [ { methodName: "xml", func: function(compact: boolean = true, spaces: number = 2) { return xmlJs.xml2json(this.read(), { compact, spaces }); }, className: "File", isStatic: false }] });