mirror of
https://github.com/yang991178/fluent-reader.git
synced 2025-04-04 21:51:06 +02:00
15 lines
429 B
TypeScript
15 lines
429 B
TypeScript
import * as React from "react"
|
|
import { RSSItem } from "../../scripts/models/item"
|
|
import { FeedReduxProps } from "../../containers/feed-container"
|
|
import { RSSFeed } from "../../scripts/models/feed"
|
|
|
|
type FeedProps = FeedReduxProps & {
|
|
feed: RSSFeed
|
|
items: RSSItem[]
|
|
sourceMap: Object
|
|
markRead: Function
|
|
contextMenu: Function
|
|
loadMore: Function
|
|
}
|
|
|
|
export class Feed extends React.Component<FeedProps> { } |