Files
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

14 lines
266 B
TypeScript

/**
* @module "js-libs/easysax"
* @private
*/ /** */
//@private
export class EasySAXParser {
constructor();
parse(xml: string): void;
on(name: string, cb: Function): void;
ns(root: string, ns: any): void;
public angularSyntax: boolean;
}