From be19e00dcbe7bd50712f79a7c37da3b3589b03a3 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Wed, 25 Oct 2023 22:36:49 +0300 Subject: [PATCH] squash! --- Source/Interface/Option.ts | 10 ---------- Source/Type/Option.ts | 9 +++++++++ 2 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 Source/Interface/Option.ts create mode 100644 Source/Type/Option.ts diff --git a/Source/Interface/Option.ts b/Source/Interface/Option.ts deleted file mode 100644 index e7eb225..0000000 --- a/Source/Interface/Option.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * @module Option - * - */ -export default interface Type extends Option { - // biome-ignore lint/suspicious/noExplicitAny: - [key: string]: any; -} - -import type Option from "files-pipe/Target/Interface/Option.js"; diff --git a/Source/Type/Option.ts b/Source/Type/Option.ts new file mode 100644 index 0000000..def3c03 --- /dev/null +++ b/Source/Type/Option.ts @@ -0,0 +1,9 @@ +/** + * @module Option + * + */ +export type Type = Option; + +export type { Type as default }; + +import type Option from "files-pipe/Target/Interface/Option.js";