@@ -1843,6 +1843,8 @@ declare module '@sveltejs/kit' {
18431843 status : 301 | 302 | 303 | 307 | 308 | 300 | 304 | 305 | 306 ;
18441844 location : string ;
18451845 }
1846+
1847+ export { } ;
18461848}
18471849
18481850declare module '@sveltejs/kit/hooks' {
@@ -1914,6 +1916,8 @@ declare module '@sveltejs/kit/hooks' {
19141916 * @param handlers The chain of `handle` functions
19151917 * */
19161918 export function sequence ( ...handlers : import ( '@sveltejs/kit' ) . Handle [ ] ) : import ( '@sveltejs/kit' ) . Handle ;
1919+
1920+ export { } ;
19171921}
19181922
19191923declare module '@sveltejs/kit/node' {
@@ -1929,6 +1933,8 @@ declare module '@sveltejs/kit/node' {
19291933 * @since 2.4.0
19301934 */
19311935 export function createReadableStream ( file : string ) : ReadableStream ;
1936+
1937+ export { } ;
19321938}
19331939
19341940declare module '@sveltejs/kit/node/polyfills' {
@@ -1938,13 +1944,17 @@ declare module '@sveltejs/kit/node/polyfills' {
19381944 * - `File`
19391945 */
19401946 export function installPolyfills ( ) : void ;
1947+
1948+ export { } ;
19411949}
19421950
19431951declare module '@sveltejs/kit/vite' {
19441952 /**
19451953 * Returns the SvelteKit Vite plugins.
19461954 * */
19471955 export function sveltekit ( ) : Promise < import ( 'vite' ) . Plugin [ ] > ;
1956+
1957+ export { } ;
19481958}
19491959
19501960declare module '$app/environment' {
@@ -1967,6 +1977,8 @@ declare module '$app/environment' {
19671977 * The value of `config.kit.version.name`.
19681978 */
19691979 export const version : string ;
1980+
1981+ export { } ;
19701982}
19711983
19721984declare module '$app/forms' {
@@ -2017,6 +2029,8 @@ declare module '$app/forms' {
20172029 * In case of an error, it redirects to the nearest error page.
20182030 * */
20192031 export function applyAction < Success extends Record < string , unknown > | undefined , Failure extends Record < string , unknown > | undefined > ( result : import ( "@sveltejs/kit" ) . ActionResult < Success , Failure > ) : Promise < void > ;
2032+
2033+ export { } ;
20202034}
20212035
20222036declare module '$app/navigation' {
@@ -2130,6 +2144,8 @@ declare module '$app/navigation' {
21302144 * */
21312145 export function replaceState ( url : string | URL , state : App . PageState ) : void ;
21322146 type MaybePromise < T > = T | Promise < T > ;
2147+
2148+ export { } ;
21332149}
21342150
21352151declare module '$app/paths' {
@@ -2161,6 +2177,8 @@ declare module '$app/paths' {
21612177 * ```
21622178 */
21632179 export function resolveRoute ( id : string , params : Record < string , string | undefined > ) : string ;
2180+
2181+ export { } ;
21642182}
21652183
21662184declare module '$app/server' {
@@ -2177,6 +2195,8 @@ declare module '$app/server' {
21772195 * @since 2.4.0
21782196 */
21792197 export function read ( asset : string ) : Response ;
2198+
2199+ export { } ;
21802200}
21812201
21822202declare module '$app/stores' {
@@ -2211,6 +2231,8 @@ declare module '$app/stores' {
22112231 export const updated : import ( 'svelte/store' ) . Readable < boolean > & {
22122232 check ( ) : Promise < boolean > ;
22132233 } ;
2234+
2235+ export { } ;
22142236} / **
22152237 * It 's possible to tell SvelteKit how to type objects inside your app by declaring the `App` namespace. By default, a new project will have a file called `src/app.d.ts` containing the following:
22162238 *
0 commit comments