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
@@ -0,0 +1,12 @@
//#region ../../packages/components/time-select/src/utils.d.ts
interface Time {
hours: number;
minutes: number;
}
declare const parseTime: (time: string) => null | Time;
declare const compareTime: (time1: string, time2: string) => number;
declare const padTime: (time: number | string) => string;
declare const formatTime: (time: Time) => string;
declare const nextTime: (time: string, step: string) => string;
//#endregion
export { compareTime, formatTime, nextTime, padTime, parseTime };