ios.d.ts 655 B

12345678910111213141516171819
  1. import * as et from "elementtree";
  2. export declare const IOS_INFO_FILE = "Info.plist";
  3. export declare class CapacitorIosInfo {
  4. readonly plistPath: string;
  5. protected _doc?: et.ElementTree;
  6. protected origInfoPlistContent?: string;
  7. protected saving: boolean;
  8. constructor(plistPath: string);
  9. get origPlistPath(): string;
  10. get doc(): et.ElementTree;
  11. static load(plistPath: string): Promise<CapacitorIosInfo>;
  12. disableAppTransportSecurity(): void;
  13. private getValueForKey;
  14. private getDictRoot;
  15. reset(): Promise<void>;
  16. save(): Promise<void>;
  17. protected reload(): Promise<void>;
  18. protected write(): string;
  19. }