17 lines
340 B
TypeScript
17 lines
340 B
TypeScript
export interface Product {
|
|
alias?: string;
|
|
founded?: number;
|
|
hasFreePlan?: boolean;
|
|
hasSelfHostingAbility?: boolean;
|
|
isOpenSource?: boolean;
|
|
key: string;
|
|
languages?: string[];
|
|
name: string;
|
|
note?: string;
|
|
origin?: string;
|
|
pricingPerYear?: string;
|
|
regions?: string[];
|
|
slogan?: string;
|
|
useAnonymously?: boolean;
|
|
}
|