export interface ScrollOption { /** * callback function when scroll */ callback: Function; } /** * Create a vue directive instance that can be used on an element * * Usage: * const directives = [ ScrollDirective({ callback: this.scrollCallback }) ] * * Or without options:
* */ export declare function ScrollDirective(option: ScrollOption): { name: string; args: { callback: boolean; }; }; export declare function registerScrollDirective(): void;