mirror of
https://github.com/pheralb/svgl.git
synced 2025-04-02 22:55:46 +08:00
15 lines
287 B
TypeScript
15 lines
287 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;
|
|
}
|