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

This commit is contained in:
YunaiV
2024-02-29 18:52:46 +08:00
parent 4e39c11d7c
commit f8580fdf2a
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'