feat(services): change IDbBrand import to explicit type import

Change the import of `IDbBrand` in `brand.service.ts` to explicitly denote it as a type. This clarifies that `IDbBrand` is only used for its type information, improving readability and understanding of code usage.

Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-04-25 16:57:39 +02:00
parent 789d62ea62
commit f3bddc7170
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,4 +1,4 @@
import IDbBrand from "@interfaces/database/IDbBrand"; import type IDbBrand from "@interfaces/database/IDbBrand";
import MysqlService from "@services/mysql.service"; import MysqlService from "@services/mysql.service";
import {Logger} from "tslog"; import {Logger} from "tslog";
import { v4 as uuidv4 } from 'uuid'; import { v4 as uuidv4 } from 'uuid';