Updates data type for Service

This commit is contained in:
Alicia Sykes 2024-02-17 16:46:25 +00:00
parent 73ec5fdbc1
commit c4ee3a1351

View file

@ -10,15 +10,18 @@ export interface Service {
name: string;
description: string;
url: string;
github: string;
github?: string;
icon?: string;
followWith?: string;
}
export interface Section {
name: string;
services: Service[];
notableMentions: ShortService[];
furtherInfo: string;
intro?: string;
notableMentions?: ShortService[] | string;
furtherInfo?: string;
wordOfWarning?: string;
}
export interface ServiceStats {