@herberttn/bytenode-webpack-plugin
Version:
Compile JavaScript into bytecode using bytenode
10 lines • 387 B
TypeScript
import type { Compiler, WebpackPluginInstance } from 'webpack';
import type { Options } from './types';
declare class BytenodeWebpackPlugin implements WebpackPluginInstance {
private readonly name;
private readonly options;
constructor(options?: Partial<Options>);
apply(compiler: Compiler): void;
}
export { BytenodeWebpackPlugin, };
//# sourceMappingURL=plugin.d.ts.map