UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

40 lines (39 loc) 1.01 kB
/** @typedef {typeof __propDef.props} ContainerProps */ /** @typedef {typeof __propDef.events} ContainerEvents */ /** @typedef {typeof __propDef.slots} ContainerSlots */ export default class Container extends SvelteComponentTyped<{ aligned: any; class?: string; justified?: boolean; style?: {}; fluid?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type ContainerProps = typeof __propDef.props; export type ContainerEvents = typeof __propDef.events; export type ContainerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { aligned: any; class?: string; justified?: boolean; style?: {}; fluid?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};