UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

72 lines (71 loc) 1.8 kB
/** @typedef {typeof __propDef.props} MenuProps */ /** @typedef {typeof __propDef.events} MenuEvents */ /** @typedef {typeof __propDef.slots} MenuSlots */ export default class Menu extends SvelteComponentTyped<{ attached: any; floated: any; size: any; wide: any; fixed?: boolean; class?: string; secondary?: boolean; inverted?: boolean; icon?: boolean; style?: {}; vertical?: boolean; compact?: boolean; stackable?: boolean; text?: boolean; fluid?: boolean; item?: boolean; labeled?: boolean; borderless?: boolean; accordion?: boolean; pointing?: boolean; tabular?: boolean; pagination?: boolean; header?: boolean; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type MenuProps = typeof __propDef.props; export type MenuEvents = typeof __propDef.events; export type MenuSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; floated: any; size: any; wide: any; fixed?: boolean; class?: string; secondary?: boolean; inverted?: boolean; icon?: boolean; style?: {}; vertical?: boolean; compact?: boolean; stackable?: boolean; text?: boolean; fluid?: boolean; item?: boolean; labeled?: boolean; borderless?: boolean; accordion?: boolean; pointing?: boolean; tabular?: boolean; pagination?: boolean; header?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};