UNPKG

@embeddable.com/sdk-core

Version:

Core Embeddable SDK module responsible for web-components bundling and publishing.

11 lines (10 loc) 692 B
import { RollupWatcher } from "rollup"; import { ChildProcess } from "node:child_process"; import { ResolvedEmbeddableConfig } from "./defineConfig"; export declare const buildWebComponent: (config: any) => Promise<void>; declare const _default: () => Promise<void>; export default _default; export declare const configureWatcher: (watcher: RollupWatcher, ctx: ResolvedEmbeddableConfig) => Promise<void>; export declare const globalHookWatcher: (watcher: RollupWatcher) => Promise<void>; export declare const openDevWorkspacePage: (previewBaseUrl: string, workspaceId: string) => Promise<ChildProcess>; export declare const sendBuildChanges: (ctx: ResolvedEmbeddableConfig) => Promise<void>;