Refactor imports and types for consistency and remove redundant paths

- Updated relative imports by replacing `@/` aliases with proper `../` paths for consistency.
- Refined type definitions in IPC handlers and repositories (`User`, `Chapter`, `Act`, etc.).
- Simplified return types in `Location` model methods for streamlined usage.
This commit is contained in:
natreex
2026-01-12 14:22:27 -05:00
parent cc7d03bee9
commit 8bad6159cf
11 changed files with 25 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
import { Database, QueryResult, RunResult, SQLiteValue } from "node-sqlite3-wasm";
import System from "@/electron/database/System";
import System from "../System.js";
export interface BookIncidentsTable extends Record<string, SQLiteValue> {
incident_id: string;