@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
14 lines (13 loc) • 361 B
TypeScript
import { BaseWidget } from './widgets.types';
export declare const popupEventContract: {
eventSignatures: {
close: {};
};
};
export type PopupEventContract = typeof popupEventContract;
export interface PopupWidgetOptions {
title?: string;
}
export interface PopupWidget extends BaseWidget<PopupEventContract> {
readonly type: 'popup';
}