Skip to content

Commit

Permalink
types cleanup (#4409)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb committed Mar 24, 2022
1 parent 08bb98c commit 69913e9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/kit/types/internal.d.ts
Expand Up @@ -18,7 +18,6 @@ import {
RequestOptions,
ResolveOptions,
ResponseHeaders,
RouteSegment,
TrailingSlash
} from './private';

Expand Down
4 changes: 0 additions & 4 deletions packages/kit/types/private.d.ts
Expand Up @@ -2,8 +2,6 @@
// but which cannot be imported from `@sveltejs/kit`. Care should
// be taken to avoid breaking changes when editing this file

import { ValidatedConfig } from './internal';

export interface AdapterEntry {
/**
* A string that uniquely identifies an HTTP service (e.g. serverless function) and is used for deduplication.
Expand Down Expand Up @@ -191,8 +189,6 @@ export interface Logger {

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

export type Only<T, U> = { [P in keyof T]: T[P] } & { [P in Exclude<keyof U, keyof T>]?: never };

export interface Prerendered {
pages: Map<
string,
Expand Down

0 comments on commit 69913e9

Please sign in to comment.