6 lines
95 B
Plaintext
6 lines
95 B
Plaintext
export type CreateAuth = {
|
|
username?: string;
|
|
email?: string;
|
|
password: string;
|
|
};
|