UNPKG
pre-fetch-plugin
Version:
latest (1.0.0)
1.0.0
A pre-fetch plugin for Vite and Webpack
pre-fetch-plugin
/
dist
/
plugins
/
webpack-plugin.d.ts
8 lines
(7 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Compiler
}
from
'webpack'
;
import
{
PreFetchPluginOptions
}
from
'../core/types'
;
export
declare
class
WebpackPreFetchPlugin
{
private
options;
constructor
(
options
:
PreFetchPluginOptions
);
apply
(
compiler
:
Compiler
):
void
; }