UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

17 lines (16 loc) 503 B
import { PopupWidget, PopupWidgetOptions } from '../types/popup.types'; import TkBaseWidget, { TkWidgetOptions } from './TkBaseWidget'; export default class TkPopupWidget extends TkBaseWidget implements PopupWidget { private popup; readonly type = "popup"; constructor(options: TkWidgetOptions & PopupWidgetOptions & { termKitElement: any; }); getTermKitElement(): any; getFrame(): { left: any; top: any; width: any; height: any; }; }