UNPKG

@amaui/ui-react

Version:
14 lines (13 loc) 389 B
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;