UNPKG
svelte-spa-chunk
Version:
latest (2.0.0)
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
0.9.11
0.9.10
0.9.9
📦 Do the Chunk split on a page-by-page basis. In the svelte-spa-router module.
svelte-spa-chunk
/
dist
/
index.d.ts
8 lines
(7 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
const
ChunkGenerator
:
(
Component
:
any
) =>
(
dynamicImport
:
any
) =>
{
new
(
options
:
any
): {}; };
export
declare
const
Chunk
:
(
dynamicImport
: () =>
any
,
Component
:
any
) =>
{
new
(
options
:
any
): {}; };
export
default
Chunk
;