@enable-tech/shared-types
Version:
This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.
15 lines • 370 B
TypeScript
import { I_Image } from 'src/common/backend/responses/schemas';
export interface I_NewUser {
email?: string;
image: I_Image;
token: string;
companyName: string;
}
export interface I_User {
first_name?: string;
last_name?: string;
email?: string;
password?: string;
password_confirmation?: string;
}
//# sourceMappingURL=index.d.ts.map