UNPKG

svelte-command-palette

Version:

#### Increase your productivity exponentially. 🚀🚀

13 lines (12 loc) • 415 B
import type { ActionId } from '../types'; declare const createStoreMethods: () => { togglePalette: () => void; getAllCalledActions: () => ActionId[]; storeCalledAction: (id: ActionId) => void; revertLastAction: (id: ActionId) => void; resetActionLog: () => void; openPalette: () => void; closePalette: () => void; resetPaletteStore: () => void; }; export default createStoreMethods;