mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
⚙️ Fix category type.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
export type tCategory =
|
||||
| 'All'
|
||||
| 'Software'
|
||||
| 'Library'
|
||||
| 'Hosting'
|
||||
| 'Framework'
|
||||
| 'CMS'
|
||||
| 'Database'
|
||||
| 'Compiler'
|
||||
| 'Social'
|
||||
| 'Entertainment'
|
||||
| 'Browser'
|
||||
| 'Language'
|
||||
| 'Education';
|
||||
+3
-1
@@ -1,7 +1,9 @@
|
||||
import type { tCategory } from './categories';
|
||||
|
||||
export interface iSVG {
|
||||
id: number;
|
||||
title: string;
|
||||
category: string;
|
||||
category: tCategory;
|
||||
route: string;
|
||||
url: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user