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 c1ddc22aeb5d413d714699c1f7d8cd84a225615e 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}