UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

32 lines (31 loc) 836 B
/** @typedef {typeof __propDef.props} FlagProps */ /** @typedef {typeof __propDef.events} FlagEvents */ /** @typedef {typeof __propDef.slots} FlagSlots */ export default class Flag extends SvelteComponentTyped<{ style: any; class?: string; isoCode?: string; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, {}> { } export type FlagProps = typeof __propDef.props; export type FlagEvents = typeof __propDef.events; export type FlagSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; class?: string; isoCode?: string; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};