manifest.d.ts 506 B

12345678910111213
  1. import { CommandMetadata } from '../../definitions';
  2. import { LiveUpdatesCoreCommand } from './core';
  3. export declare class LiveUpdatesManifestCommand extends LiveUpdatesCoreCommand {
  4. getMetadata(): Promise<CommandMetadata>;
  5. run(): Promise<void>;
  6. private getFilesAndSizesAndHashesForGlobPattern;
  7. private getFileAndSizeAndHashForFile;
  8. private readFile;
  9. private getIntegrity;
  10. private getCapacitorConfigJsonPath;
  11. private getCapacitorCLIConfig;
  12. private getCapacitorConfig;
  13. }