UNPKG

@stackblitz/sdk

Version:

SDK for generating and embedding StackBlitz projects.

10 lines (9 loc) 294 B
import { VM } from './vm'; export declare class Connection { element: HTMLIFrameElement; id: string; pending: Promise<VM>; vm?: VM; constructor(element: HTMLIFrameElement); } export declare const getConnection: (identifier: string | HTMLIFrameElement) => Connection | null;