Files
FastGPT/client/src/service/api/plugins.d.ts
2023-08-05 12:56:37 +08:00

12 lines
242 B
TypeScript

import { UserAuthTypeEnum } from '../../constants/common';
export type SendCodeBody = {
username: string;
type: `${UserAuthTypeEnum}`;
};
export type AuthCodeBody = {
username: string;
type: `${UserAuthTypeEnum}`;
code: string;
};