20 lines
403 B
TypeScript
20 lines
403 B
TypeScript
// ---- Types ----
|
|
export interface ApiAlternative {
|
|
name: string;
|
|
website: string;
|
|
freeTier: string;
|
|
paidTier: string;
|
|
pricingUrl: string;
|
|
description: string;
|
|
features: string[];
|
|
bestFor: string;
|
|
xApiReplacement: string;
|
|
}
|
|
|
|
export interface CostEstimate {
|
|
monthlyReads: number;
|
|
monthlyWrites: number;
|
|
xCost: number;
|
|
alternatives: { name: string; cost: number | string }[];
|
|
}
|