HarmonyOSBaseLibs/src/main/ets/view/refresh/RefreshController.ets
2025-03-17 16:47:21 +08:00

6 行
212 B
Plaintext

export interface RefreshController {
toTop: (smooth?: boolean) => void
toBottom: (smooth?: boolean) => void
toIndex: (value: number, smooth?: boolean, align?: ScrollAlign) => void
isAtEnd: () => boolean
}