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";