feat: scroll aware sticky prompt

This commit is contained in:
Brooklyn Nicholson
2026-04-14 11:49:32 -05:00
141 changed files with 8865 additions and 827 deletions
+2
View File
@@ -49,8 +49,10 @@ declare module '@hermes/ink' {
export type ScrollBoxHandle = {
readonly scrollTo: (y: number) => void
readonly scrollBy: (dy: number) => void
readonly scrollToElement: (el: unknown, offset?: number) => void
readonly scrollToBottom: () => void
readonly getScrollTop: () => number
readonly getPendingDelta: () => number
readonly getViewportHeight: () => number
readonly isSticky: () => boolean
readonly subscribe: (listener: () => void) => () => void