1 Star 0 Fork 11

柏小白/vue3-seamless-scroll

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.d.ts 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
xfy520 提交于 2021-08-29 20:00 +08:00 . 增加声明文件
declare module 'vue3-seamless-scroll' {
type cssOptions<D = {}> = {
datas?: Array<D>;
modelValue?: boolean;
step?: number | string;
limitScrollNum?: number | string;
hover?: boolean;
direction?: string;
isWatch?: boolean;
count?: number | string;
duration?: number | string;
cubicBezier?: {
x1?: number;
y1?: number;
x2?: number;
y2?: number;
}
}
type jsOptions<D = {}> = {
modelValue?: boolean;
datas?: Array<D>;
step?: number | string;
limitScrollNum?: number | string;
hover?: boolean;
direction?: string;
singleHeight?: number | string;
singleWidth?: number | string;
singleWaitTime?: number | string;
isRemUnit?: boolean;
isWatch?: boolean;
delay?: number | string;
ease?: string;
}
export const jsSeamlessScroll: import("vue").DefineComponent<jsOptions>;
export const cssSeamlessScroll: import("vue").DefineComponent<cssOptions>;
const install: (app: import("vue").App, options?: {
name?: string
}) => any;
export default install;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/bozhuang/vue3-seamless-scroll.git
[email protected]:bozhuang/vue3-seamless-scroll.git
bozhuang
vue3-seamless-scroll
vue3-seamless-scroll
master

搜索帮助