webpack-browser-extension-html
Version:
webpack plugin to handle HTML assets from browser extensions
14 lines (11 loc) • 431 B
TypeScript
import { LoaderContext } from 'webpack';
import { I as IncludeList } from '../types-CzTGoNr0.js';
interface InjectContentAcceptContext extends LoaderContext<any> {
getOptions: () => {
manifestPath: string;
includeList: IncludeList;
exclude: string[];
};
}
declare function export_default(this: InjectContentAcceptContext, source: string): string | undefined;
export { export_default as default };