mirror of
https://github.com/pheralb/svgl.git
synced 2025-03-14 17:10:35 +08:00
15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
import type { tCategory } from './categories';
|
|
|
|
export interface iSVG {
|
|
id?: number;
|
|
title: string;
|
|
category: tCategory;
|
|
route:
|
|
| string // for backwards compat of when theme support was not added
|
|
| {
|
|
dark: string;
|
|
light: string;
|
|
};
|
|
url: string;
|
|
}
|