UNPKG

flowbite-svelte-blocks

Version:
18 lines (17 loc) 316 B
export type Comment = { id: string; commenter: { name: string; profilePicture?: string; }; date?: string; isoDate?: string; content: string; replies?: Comment[]; }; export interface LinkType { name: string; href?: string; rel?: string; active?: boolean; }