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 bcd31bfa38a6de9fbb609d7d564d453959a9a365 22 lines 399 B view raw
1import type { CollectionEntry } from 'astro:content' 2 3// Reading time interface 4export interface ReadingTime { 5 text: string 6 minutes: number 7 time: number 8 words: number 9} 10 11// TOC item interface 12export interface TOCItem { 13 level: number 14 text: string 15 id: string 16 index: number 17} 18 19// PostList component props interface 20export interface PostListProps { 21 posts: CollectionEntry<'posts'>[] 22}