mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
12 lines
242 B
TypeScript
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;
|
|
};
|