6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
export declare type CreateAuth = {
|
|
username?: string;
|
|
email?: string;
|
|
password: string;
|
|
};
|