You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
711 B
17 lines
711 B
import { IconOptions, ProjectOptions } from 'expo-pwa';
|
|
import { compilation as compilationNS, Compiler } from 'webpack';
|
|
import { BeforeEmitOptions } from './JsonWebpackPlugin';
|
|
import ModifyJsonWebpackPlugin from './ModifyJsonWebpackPlugin';
|
|
export declare type Options = {
|
|
source: string;
|
|
outputPath?: string;
|
|
backgroundColor?: string;
|
|
resizeMode?: 'contain' | 'cover';
|
|
};
|
|
export default class ChromeIconsWebpackPlugin extends ModifyJsonWebpackPlugin {
|
|
private options;
|
|
private icon;
|
|
constructor(options: ProjectOptions, icon: IconOptions | null);
|
|
modifyAsync(compiler: Compiler, compilation: compilationNS.Compilation, data: BeforeEmitOptions): Promise<BeforeEmitOptions>;
|
|
}
|