fix(api): use bcrypt directly instead of passlib for compatibility

This commit is contained in:
bwstudio
2026-05-21 22:18:36 +08:00
parent 7f51d200f1
commit 4651781bc3
23511 changed files with 2587254 additions and 8 deletions
+64
View File
@@ -0,0 +1,64 @@
import { ExtractPublicPropTypes } from "vue";
//#region ../../packages/components/backtop/src/backtop.d.ts
interface BacktopProps {
/**
* @description the button will not show until the scroll height reaches this value.
*/
visibilityHeight?: number;
/**
* @description the target to trigger scroll.
*/
target?: string;
/**
* @description right distance.
*/
right?: number;
/**
* @description bottom distance.
*/
bottom?: number;
}
/**
* @deprecated Removed after 3.0.0, Use `BacktopProps` instead.
*/
declare const backtopProps: {
/**
* @description the button will not show until the scroll height reaches this value.
*/
readonly visibilityHeight: {
readonly type: NumberConstructor;
readonly default: 200;
};
/**
* @description the target to trigger scroll.
*/
readonly target: {
readonly type: StringConstructor;
readonly default: "";
};
/**
* @description right distance.
*/
readonly right: {
readonly type: NumberConstructor;
readonly default: 40;
};
/**
* @description bottom distance.
*/
readonly bottom: {
readonly type: NumberConstructor;
readonly default: 40;
};
};
/**
* @deprecated Removed after 3.0.0, Use `BacktopProps` instead.
*/
type BacktopPropsPublic = ExtractPublicPropTypes<typeof backtopProps>;
declare const backtopEmits: {
click: (evt: MouseEvent) => boolean;
};
type BacktopEmits = typeof backtopEmits;
//#endregion
export { BacktopEmits, BacktopProps, BacktopPropsPublic, backtopEmits, backtopProps };