@amaui/ui-react
Version:
UI for React
14 lines (13 loc) • 389 B
TypeScript
import React from 'react';
import { IBaseElement, IStyle } from '../types';
export interface ISpyScroll extends IBaseElement {
ids?: Array<string>;
offset?: number;
offsetStart?: number;
parent?: HTMLElement;
addClassName?: string;
addStyle?: IStyle;
onActive?: (value: string) => any;
}
declare const SpyScroll: React.FC<ISpyScroll>;
export default SpyScroll;