UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

45 lines (44 loc) 1.28 kB
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { helpfullink?: string; abuselink?: string; comment: { id: string; user: { name: string; img: { src: string; alt: string; }; joined: string; }; total: number; rating: number; heading: string; address: string; datetime: string; }; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; evaluation: {}; }; }; export type RatingCommentProps = typeof __propDef.props; export type RatingCommentEvents = typeof __propDef.events; export type RatingCommentSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let ceil: $$Props['ceil'] = false; * @prop export let helpfullink: $$Props['helpfullink'] = ''; * @prop export let abuselink: $$Props['abuselink'] = ''; * @prop export let comment: $$Props['comment']; */ export default class RatingComment extends SvelteComponentTyped<RatingCommentProps, RatingCommentEvents, RatingCommentSlots> { } export {};