UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

19 lines (18 loc) 542 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { storyImage: string; storyTitle: string; altTag: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type WindowProps = typeof __propDef.props; export declare type WindowEvents = typeof __propDef.events; export declare type WindowSlots = typeof __propDef.slots; export default class Window extends SvelteComponentTyped<WindowProps, WindowEvents, WindowSlots> { } export {};