UNPKG

@novacbn/svelte-pipeline

Version:

Provides custom Javascript evaluation contexts and the Svelte Compiler as Svelte Stores, for REPLs, IDEs, etc.

26 lines (25 loc) 893 B
import { SvelteComponentTyped } from "svelte"; import type { IPipelineSvelteStore } from "../stores/svelte"; declare const __propDef: { props: { element?: HTMLDivElement | undefined; style?: string | undefined; class?: string | undefined; pipeline: IPipelineSvelteStore; }; slots: {}; getters: {}; events: { destroy: CustomEvent<void>; error: CustomEvent<{ error: Error; }>; mount: CustomEvent<void>; }; }; export declare type PipelineRenderIFrameProps = typeof __propDef.props; export declare type PipelineRenderIFrameEvents = typeof __propDef.events; export declare type PipelineRenderIFrameSlots = typeof __propDef.slots; export default class PipelineRenderIFrame extends SvelteComponentTyped<PipelineRenderIFrameProps, PipelineRenderIFrameEvents, PipelineRenderIFrameSlots> { } export {};