quarkd
Version:
Mobile UI Components built on Web Components.
19 lines (18 loc) • 480 B
TypeScript
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;