svgl/src/types/svg.ts
2023-12-14 12:42:05 +00:00

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