10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type CreateAuth = {
|
|
username?: string;
|
|
password: string;
|
|
email?: string;
|
|
}
|