export namespace IReviewPlatforms { export type PlatformName = 'g2' | 'clutch' | 'upcity'; export interface Platform { rating: string; count: number; url: string; } export type Platforms = Record; }