fix(formatters): correctly export and import customFormat

This commit is contained in:
Viren070
2025-04-29 23:01:27 +01:00
parent bd4ae5afed
commit e2f3ff638d
3 changed files with 2 additions and 4 deletions
+1
View File
@@ -3,3 +3,4 @@ export * from './utils';
export * from './torrentio';
export * from './torbox';
export * from './imposter';
export * from './custom';
@@ -1,6 +1,3 @@
.previewContainer {
}
/* Collapsible container styling */
.customFormatterContainer {
background-color: #121212;
@@ -5,10 +5,10 @@ import {
gdriveFormat,
torrentioFormat,
torboxFormat,
customFormat,
} from '@aiostreams/formatters';
import { parseFilename } from '@aiostreams/parser';
import { serviceDetails } from '@aiostreams/utils';
import { customFormat } from '@aiostreams/formatters/src/custom';
interface FormatterPreviewProps {
formatter: string;