Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at d53cf66a7c485bc65a203dfd645442c65b48b58e 20 lines 345 B view raw
1// Reading time interface 2export interface ReadingTime { 3 text: string 4 minutes: number 5 time: number 6 words: number 7} 8 9// TOC item interface 10export interface TOCItem { 11 level: number 12 text: string 13 id: string 14 index: number 15} 16 17// PostList component props interface 18export interface PostListProps { 19 posts: CollectionEntry<'posts'>[] 20}