ionic-environment-plugin.d.ts 479B

123456789101112
  1. import { BuildContext, DeepLinkConfigEntry } from '../util/interfaces';
  2. export declare class IonicEnvironmentPlugin {
  3. private context;
  4. private writeToDisk;
  5. constructor(context: BuildContext, writeToDisk: boolean);
  6. apply(compiler: any): void;
  7. private initializeWebpackFileSystemCaches(webpackFileSystem);
  8. }
  9. export declare function convertDeepLinkConfigToWebpackFormat(parsedDeepLinkConfigs: Map<string, DeepLinkConfigEntry>): {
  10. [index: string]: string;
  11. };