🛠️ Rename type tCategory to Category for consistency in type definitions

This commit is contained in:
pheralb
2025-09-01 11:27:22 +01:00
parent 55199765be
commit 2692c7d34d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
export type tCategory = export type Category =
| "All" | "All"
| "AI" | "AI"
| "Software" | "Software"
+2 -2
View File
@@ -1,4 +1,4 @@
import type { tCategory } from "./categories"; import type { Category } from "./categories";
export type ThemeOptions = { export type ThemeOptions = {
dark: string; dark: string;
@@ -8,7 +8,7 @@ export type ThemeOptions = {
export interface iSVG { export interface iSVG {
id?: number; id?: number;
title: string; title: string;
category: tCategory | tCategory[]; category: Category | Category[];
route: string | ThemeOptions; route: string | ThemeOptions;
wordmark?: string | ThemeOptions; wordmark?: string | ThemeOptions;
brandUrl?: string; brandUrl?: string;