Sleep
The sleep action waits for a specified amount of time.
interface SleepButtonAction { type: 'sleep'; ms: number; // the time to wait in milliseconds}
Example
This button will open the command palette, wait for 1 second, and then type help
into the search bar.
```meta-bind-buttonstyle: primarylabel: Sleepactions: - type: command command: command-palette:open - type: sleep ms: 1000 - type: input str: help```