Update import paths

This commit is contained in:
Nikola Petrov
2024-09-23 23:24:59 +02:00
parent 93241aae82
commit 4667dfee78
9 changed files with 15 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
import { type ResultSetHeader, type RowDataPacket, type QueryOptions } from "mysql2"
import pool from '../miscellaneous/db'
import pool from 'miscellaneous/db'
interface CashTransaction extends RowDataPacket {
id?: number;

View File

@@ -1,5 +1,5 @@
import { type ResultSetHeader, type RowDataPacket, type QueryOptions } from "mysql2"
import pool from '../miscellaneous/db'
import pool from 'miscellaneous/db'
interface Media extends RowDataPacket {

View File

@@ -1,5 +1,5 @@
import { type ResultSetHeader, type RowDataPacket } from "mysql2"
import pool from '../miscellaneous/db'
import pool from 'miscellaneous/db'
interface UserD extends RowDataPacket {
name?: string;