UNPKG

node-apk

Version:

A library to parse Android application manifest and signature

15 lines (14 loc) 379 B
import { StringPool } from "./common"; import Source from "./source"; export default class XmlElement { private static parseChildren; readonly tag: string; readonly attributes: { [key: string]: any; }; readonly children: { [key: string]: XmlElement[]; }; constructor(source: Source, stringPool?: StringPool); toString(): string; }