monorepo/services/types/feed.ts

10 lines
177 B
TypeScript

export type FeedResponse = FeedResult[]
export interface FeedResult {
title: string
id: string,
description: string
thumbnail: string
channel: string
date: number
}