From 57d2e6bd5e7220d57785e353498aa9b5c7785152 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; -}