svgl/src/types/svg.ts
2023-12-11 20:58:05 -03:00

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;
}