-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypings.d.ts
More file actions
31 lines (20 loc) · 822 Bytes
/
typings.d.ts
File metadata and controls
31 lines (20 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Compiler } from "webpack";
export = VersionCheckWebpackPlugin;
export type EntryEntries = {[x: string]: string};
declare class VersionCheckWebpackPlugin {
constructor(options?: VersionCheckWebpackPlugin.Options);
private options: VersionCheckWebpackPlugin.Options;
private updaterName: string;
private updaterExtension: string;
private updaterPath: string;
private getPrePath(): string;
private generateFile(compiler: Compiler): void;
private removeFile(): void;
private getEntryEntries(compiler: Compiler): EntryEntries;
public apply(compiler: Compiler): void;
static readonly version: number;
static readonly pluginName: 'VersionCheckWebpackPlugin';
}
declare namespace VersionCheckWebpackPlugin {
interface Options { versionFilename?: string, entryNeedInjectedUpdater?: string | [] }
}