List stash entries, newest first.
(options?: BaseWorktreeOptions)
| 302 | stashPush(options?: StashPushOptions): Promise<void>; |
| 303 | /** List stash entries, newest first. */ |
| 304 | stashList(options?: BaseWorktreeOptions): Promise<string[]>; |
| 305 | /** Restore the latest stash entry. */ |
| 306 | stashPop(options?: StashPopOptions): Promise<void>; |
| 307 | /** Unstage paths or hard-reset tracked files to a ref. */ |