Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Fix bad imports in type definitions (#1709)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Jan 29, 2021
1 parent 43962ad commit 4dbf565
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# sapper changelog

## 0.29.1 (Unreleased)

* Fix bad imports in type definitions ([#1709](https://github.com/sveltejs/sapper/pull/1709))

## 0.29.0

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.
Expand Down
5 changes: 1 addition & 4 deletions runtime/src/internal/manifest-client.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import { PageParams } from '@sapper/common';
import {
Preload
} from './shared';
import { PageParams, Preload } from '@sapper/common';

export interface DOMComponentModule {
default: DOMComponentConstructor;
Expand Down
7 changes: 3 additions & 4 deletions runtime/src/internal/manifest-server.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import {
Preload
} from './shared';
import { Preload } from '@sapper/common';
import { SapperRequest, SapperResponse } from '@sapper/server';

export const src_dir: string;
export const build_dir: string;
export const dev: boolean;
export const manifest: Manifest;

export { SapperRequest, SapperResponse } from '@sapper/server';
export type { SapperRequest, SapperResponse };

export interface SSRComponentModule {
default: SSRComponent;
Expand Down

0 comments on commit 4dbf565

Please sign in to comment.