From 8e4ab7acddbdb84fd755acf7e75cf471f50cba60 Mon Sep 17 00:00:00 2001 From: houzhongjian <houzhongyi@126.com> Date: 星期四, 31 十月 2024 10:16:47 +0800 Subject: [PATCH] 优化部分页面及配置 --- src/api/login/types.ts | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/api/login/types.ts b/src/api/login/types.ts index b8c0a3d..5c9d8f5 100644 --- a/src/api/login/types.ts +++ b/src/api/login/types.ts @@ -6,6 +6,15 @@ socialState?: string } +export type Oauth2TokenVO = { + clientId: string + clientSecret: string + grantType: string + username: string + password: string + scope: string +} + export type TokenType = { id: number // 编号 accessToken: string // 访问令牌 -- Gitblit v1.9.3