UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

14 lines (10 loc) 313 B
import type { SvelteComponentTyped } from 'svelte' import type { Component } from '../../component' interface RatingProps extends Component {} type RatingEvents = { mount: CustomEvent<HTMLDivElement> } export default class Rating extends SvelteComponentTyped< RatingProps, RatingEvents > {}