2023-05-10:feat: 新增锁屏功能

(cherry picked from commit f8580fdf2a)
This commit is contained in:
YunaiV
2024-02-29 18:52:46 +08:00
committed by shizhong
parent 3587da7404
commit 14e9d56c91
13 changed files with 570 additions and 3 deletions

3
types/global.d.ts vendored
View File

@ -14,6 +14,9 @@ declare global {
type LocaleType = 'zh-CN' | 'en'
declare type TimeoutHandle = ReturnType<typeof setTimeout>
declare type IntervalHandle = ReturnType<typeof setInterval>
type AxiosHeaders =
| 'application/json'
| 'application/x-www-form-urlencoded'