UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

64 lines (63 loc) 1.57 kB
/** @typedef {typeof __propDef.props} HeaderProps */ /** @typedef {typeof __propDef.events} HeaderEvents */ /** @typedef {typeof __propDef.slots} HeaderSlots */ export default class Header extends SvelteComponentTyped<{ attached: any; aligned: any; floated: any; size: any; color: any; sub?: boolean; class?: string; disabled?: boolean; primary?: boolean; secondary?: boolean; inverted?: boolean; icon?: boolean; divider?: boolean; dividing?: boolean; block?: boolean; justified?: boolean; style?: {}; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type HeaderProps = typeof __propDef.props; export type HeaderEvents = typeof __propDef.events; export type HeaderSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; aligned: any; floated: any; size: any; color: any; sub?: boolean; class?: string; disabled?: boolean; primary?: boolean; secondary?: boolean; inverted?: boolean; icon?: boolean; divider?: boolean; dividing?: boolean; block?: boolean; justified?: boolean; style?: {}; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};