UNPKG

svelte-golden-layout

Version:
27 lines (26 loc) 831 B
import { SvelteComponentTyped } from "svelte"; import type { JsonValue } from 'golden-layout'; import { VirtualLayout, LayoutConfig } from 'golden-layout'; import './css/goldenlayout-base.css'; declare const __propDef: { props: { config: LayoutConfig; goldenLayout?: VirtualLayout; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { id: string; componentType: string; componentState: JsonValue; }; }; }; export declare type ComponentProps = typeof __propDef.props; export declare type ComponentEvents = typeof __propDef.events; export declare type ComponentSlots = typeof __propDef.slots; export default class Component extends SvelteComponentTyped<ComponentProps, ComponentEvents, ComponentSlots> { } export {};