UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

19 lines (18 loc) 480 B
import { QuarkElement } from "quarkc"; export interface Props { offsettop?: number; zindex?: number; } declare class QuarkSticky extends QuarkElement { offsettop: string; zindex: string; containerRef: any; stickyRef: any; calcSizeFuncRef: any; componentDidMount(): void; componentWillUnmount(): void; scrollEvent: () => void; getCalcEvent: (offsettop: any) => (value: string) => number; render(): any; } export default QuarkSticky;