Add service type

This commit is contained in:
Neshura 2024-01-01 20:10:19 +01:00
parent 8aa858a49e
commit 3d31710c3f
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
3 changed files with 13 additions and 2 deletions
src/lib/types

View file

@ -0,0 +1,9 @@
export type Service = {
name: string;
icon: string;
href: string;
desc: string;
warn: string;
extLink?: string;
id: number;
};