monorepo/services/types/feed.ts

10 lines
177 B
TypeScript
Raw Normal View History

2021-04-01 17:58:41 +00:00
export type FeedResponse = FeedResult[]
export interface FeedResult {
title: string
id: string,
description: string
thumbnail: string
channel: string
date: number
}