mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
import type { tCategory } from './categories';
|
|
|
|
export type ThemeOptions = {
|
|
dark: string;
|
|
light: string;
|
|
};
|
|
|
|
export interface iSVG {
|
|
id?: number;
|
|
title: string;
|
|
category: tCategory | tCategory[];
|
|
route: string | ThemeOptions;
|
|
wordmark?: string | ThemeOptions;
|
|
brandUrl?: string;
|
|
url: string;
|
|
}
|