From 18796934f0a270b9c1da9acd5272ee6b0a97d291 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 12 Apr 2023 16:36:15 +1000 Subject: [PATCH] Remove some dead code and an invalid import from types.ts --- ts/components/types.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ts/components/types.ts b/ts/components/types.ts index bd29121ea..220585537 100644 --- a/ts/components/types.ts +++ b/ts/components/types.ts @@ -1,14 +1,5 @@ // Copyright: Ankitects Pty Ltd and contributors // License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html -import type Pane from "./Pane.svelte"; - export type Size = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export type Breakpoint = "xs" | "sm" | "md" | "lg" | "xl" | "xxl"; - -export class ResizablePane { - resizable = {} as Pane; - height = 0; - minHeight = 0; - maxHeight = Infinity; -}