mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00

Configure via the public `angularSyntax` property on EasySAXParser and the XmlParser wrapper.
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
//@private
|
|
declare module "js-libs/easysax" {
|
|
class EasySAXParser {
|
|
constructor();
|
|
parse(xml: string): void;
|
|
on(name: string, cb: Function): void;
|
|
ns(root: string, ns: any): void;
|
|
public angularSyntax: boolean;
|
|
}
|
|
}
|
|
|