ragemp-auto-reload-webpack-plugin
Version:
Webpack plugin that reload the RAGE MP server after compilation
12 lines (11 loc) • 360 B
TypeScript
import { Config } from './types';
export declare class RagempAutoReloadPlugin {
config: Config;
serverDirectory: string;
serverProcessName: string;
constructor(config: Config);
validateConfig: () => void;
determineServerDirectory: () => void;
determineServerProcessName: () => void;
apply: (compiler: any) => void;
}