export interface Action { label: string; action: () => void; } export interface ActionPaletteConstructor { root: HTMLDivElement; actions: Action[]; } /** * ActionPalette is a draggable pane that contains a list of buttons. * Each button triggers an action when clicked. */ export default class ActionPalette { constructor(opts: ActionPaletteConstructor); }