Files
dsProject/dsPgBase/WebRoot/html/cdn/lib/components/backtop/src/backtop.d.ts
2025-09-03 11:36:01 +08:00

25 lines
714 B
TypeScript

import type { ExtractPropTypes } from 'vue';
export declare const backtopProps: {
readonly visibilityHeight: {
readonly type: NumberConstructor;
readonly default: 200;
};
readonly target: {
readonly type: StringConstructor;
readonly default: "";
};
readonly right: {
readonly type: NumberConstructor;
readonly default: 40;
};
readonly bottom: {
readonly type: NumberConstructor;
readonly default: 40;
};
};
export declare type BacktopProps = ExtractPropTypes<typeof backtopProps>;
export declare const backtopEmits: {
click: (evt: MouseEvent) => boolean;
};
export declare type BacktopEmits = typeof backtopEmits;