UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

24 lines (23 loc) 693 B
/** @typedef {typeof __propDef.props} TagContainerProps */ /** @typedef {typeof __propDef.events} TagContainerEvents */ /** @typedef {typeof __propDef.slots} TagContainerSlots */ export default class TagContainer extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type TagContainerProps = typeof __propDef.props; export type TagContainerEvents = typeof __propDef.events; export type TagContainerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};