File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
- export function dynamicImport ( specifier : any ) : Promise < any > ;
2
1
export function renderModule ( module : ( SvelteComponentDev | {
3
2
default : SvelteComponentDev ;
4
3
} ) & {
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ export default function RoutifyPlugin(input?: Partial<VitePluginOptionsInput> |
17
17
outDir : string ;
18
18
} ;
19
19
envPrefix : string [ ] ;
20
+ define : {
21
+ 'import.meta.env.ROUTIFY_SSR_ENABLE' : string ;
22
+ } ;
20
23
} ;
21
24
transformIndexHtml : ( html : any ) => any ;
22
25
configureServer : ( server : any ) => ( ) => any ;
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ export class Router implements Readable<Router> {
51
51
* function that resolves after the active route has changed
52
52
* @returns {Promise<Route> } */
53
53
ready : ( ) => Promise < Route > ;
54
+ rendered : ( ) => Promise < void > ;
54
55
/** @type {Map<string, Route> } */
55
56
history : Map < string , Route > ;
56
57
parentCmpCtx : any ;
You can’t perform that action at this time.
0 commit comments