MCPcopy Create free account
hub / github.com/Alphanimble/htmlstream / StreamScrollFollow

Interface StreamScrollFollow

src/hold-stream.ts:98–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96export const DEFAULT_STREAM_SCROLL_THRESHOLD = 80;
97
98export interface StreamScrollFollow {
99 paused: boolean;
100 lastScrollTop: number;
101}
102
103export function createStreamScrollFollow(): StreamScrollFollow {
104 return { paused: false, lastScrollTop: 0 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected