UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

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