This repository was archived by the owner on Jan 11, 2023. It is now read-only.
File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
# sapper changelog
2
2
3
+ ## 0.29.1 (Unreleased)
4
+
5
+ * Fix bad imports in type definitions ([ #1709 ] ( https://github.com/sveltejs/sapper/pull/1709 ) )
6
+
3
7
## 0.29.0
4
8
5
9
Please see the [ migration guide] ( https://sapper.svelte.dev/migrating#0_28_to_0_29 ) for details on migrating from Sapper 0.28 to Sapper 0.29.
Original file line number Diff line number Diff line change 1
- import { PageParams } from '@sapper/common' ;
2
- import {
3
- Preload
4
- } from './shared' ;
1
+ import { PageParams , Preload } from '@sapper/common' ;
5
2
6
3
export interface DOMComponentModule {
7
4
default : DOMComponentConstructor ;
Original file line number Diff line number Diff line change 1
- import {
2
- Preload
3
- } from './shared' ;
1
+ import { Preload } from '@sapper/common' ;
2
+ import { SapperRequest , SapperResponse } from '@sapper/server' ;
4
3
5
4
export const src_dir : string ;
6
5
export const build_dir : string ;
7
6
export const dev : boolean ;
8
7
export const manifest : Manifest ;
9
8
10
- export { SapperRequest , SapperResponse } from '@sapper/server' ;
9
+ export type { SapperRequest , SapperResponse } ;
11
10
12
11
export interface SSRComponentModule {
13
12
default : SSRComponent ;
You can’t perform that action at this time.
0 commit comments