mirror of
https://github.com/StepanovPlaton/torrent_frontend.git
synced 2026-04-03 12:20:48 +04:00
29 lines
568 B
TypeScript
29 lines
568 B
TypeScript
import {
|
|
loginFormSchema,
|
|
loginFormFieldNames,
|
|
LoginFormType,
|
|
} from "./schemas/login";
|
|
|
|
import {
|
|
registrationFormSchema,
|
|
registrationFormFieldNames,
|
|
RegistrationFormType,
|
|
RegistrationFormFields,
|
|
} from "./schemas/registration";
|
|
|
|
import { userSchema, User } from "./schemas/user";
|
|
import { UserService } from "./user";
|
|
|
|
export {
|
|
loginFormSchema,
|
|
loginFormFieldNames,
|
|
registrationFormSchema,
|
|
registrationFormFieldNames,
|
|
UserService,
|
|
userSchema,
|
|
type User,
|
|
type LoginFormType,
|
|
type RegistrationFormType,
|
|
type RegistrationFormFields,
|
|
};
|