Skip to content

Commit 69913e9

Browse files
authored
types cleanup (#4409)
1 parent 08bb98c commit 69913e9

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

packages/kit/types/internal.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import {
1818
RequestOptions,
1919
ResolveOptions,
2020
ResponseHeaders,
21-
RouteSegment,
2221
TrailingSlash
2322
} from './private';
2423

packages/kit/types/private.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// but which cannot be imported from `@sveltejs/kit`. Care should
33
// be taken to avoid breaking changes when editing this file
44

5-
import { ValidatedConfig } from './internal';
6-
75
export interface AdapterEntry {
86
/**
97
* A string that uniquely identifies an HTTP service (e.g. serverless function) and is used for deduplication.
@@ -191,8 +189,6 @@ export interface Logger {
191189

192190
export type MaybePromise<T> = T | Promise<T>;
193191

194-
export type Only<T, U> = { [P in keyof T]: T[P] } & { [P in Exclude<keyof U, keyof T>]?: never };
195-
196192
export interface Prerendered {
197193
pages: Map<
198194
string,

0 commit comments

Comments
 (0)