mirror of
https://github.com/Lissy93/awesome-privacy.git
synced 2026-03-11 08:55:33 +00:00
Updates data type for Service
This commit is contained in:
parent
73ec5fdbc1
commit
c4ee3a1351
1 changed files with 6 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue