Thomas Kaul d00d7ac1dd
Feature/add support for archived product page (#3843)
* Add support for archived product page
2024-09-29 19:27:02 +02:00

18 lines
364 B
TypeScript

export interface Product {
alias?: string;
founded?: number;
hasFreePlan?: boolean;
hasSelfHostingAbility?: boolean;
isArchived?: boolean;
isOpenSource?: boolean;
key: string;
languages?: string[];
name: string;
note?: string;
origin?: string;
pricingPerYear?: string;
regions?: string[];
slogan?: string;
useAnonymously?: boolean;
}