前端初始化

This commit is contained in:
“hsc”
2026-08-21 15:36:24 +08:00
commit e4d8ecde13
14411 changed files with 2275932 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { SFCWithInstall } from "../../utils/vue/typescript.js";
import InfiniteScroll from "./src/index.js";
import * as _$vue from "vue";
//#region ../../packages/components/infinite-scroll/index.d.ts
declare const _InfiniteScroll: SFCWithInstall<typeof InfiniteScroll>;
declare const ElInfiniteScroll: SFCWithInstall<_$vue.ObjectDirective<HTMLElement & {
ElInfiniteScroll: {
container: HTMLElement | Window;
containerEl: HTMLElement;
instance: _$vue.ComponentPublicInstance;
delay: number;
lastScrollTop: number;
cb: () => void;
onScroll: () => void;
observer?: MutationObserver;
};
}, () => void, string, any>>;
//#endregion
export { ElInfiniteScroll, _InfiniteScroll as default };