UNPKG

479 BTypeScriptView Raw
1import { BuildContext, DeepLinkConfigEntry } from '../util/interfaces';
2export 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}
9export declare function convertDeepLinkConfigToWebpackFormat(parsedDeepLinkConfigs: Map<string, DeepLinkConfigEntry>): {
10 [index: string]: string;
11};