开发: 登录等功能

This commit is contained in:
zhengw
2023-04-07 17:38:15 +08:00
parent f639dc8284
commit 5834254a8f
27 changed files with 1475 additions and 153 deletions

8
src/window.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import { NotificationInstance } from 'antd/es/notification/interface';
// 在window上挂载 antd Notification
declare global {
interface Window {
NotificationCF: NotificationInstance;
}
}