refactor: reorganize frontend code

This commit is contained in:
Ryan Walters
2025-08-20 02:19:12 -05:00
parent f90f377277
commit 3414880705
6 changed files with 78 additions and 72 deletions

View File

@@ -1,8 +1,9 @@
// Import generated TypeScript types from ts-rs
export type { StreamResult } from "./bindings/StreamResult";
export type { StreamDetail } from "./bindings/StreamDetail";
export type { StreamResultError } from "./bindings/StreamResultError";
export type { MediaType } from "./bindings/MediaType";
import type { StreamResult } from "./bindings/StreamResult";
import type { StreamDetail } from "./bindings/StreamDetail";
import type { StreamResultError } from "./bindings/StreamResultError";
import type { MediaType } from "./bindings/MediaType";
export type { StreamResult, StreamDetail, StreamResultError, MediaType };
// Tauri invoke wrapper
import { invoke } from "@tauri-apps/api/core";