feat: 新增锁屏功能

This commit is contained in:
WuYihui
2023-05-10 10:12:31 +08:00
parent 46ac7f88c9
commit e2fd349070
11 changed files with 570 additions and 0 deletions

3
types/global.d.ts vendored
View File

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