mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-22 18:11:29 -08:00
17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
|
declare module 'v3-infinite-loading' {
|
||
|
import { Plugin, DefineComponent } from 'vue';
|
||
|
|
||
|
interface InfiniteLoadingProps {
|
||
|
target: string;
|
||
|
}
|
||
|
|
||
|
export interface Events {
|
||
|
infinite: (state: { loaded: () => void; complete: () => void }) => void;
|
||
|
}
|
||
|
|
||
|
const InfiniteLoading: DefineComponent<InfiniteLoadingProps, {}, {}, {}, {}, {}, {}, Events> &
|
||
|
Plugin;
|
||
|
|
||
|
export default InfiniteLoading;
|
||
|
}
|