Ts changes weren't staged, it compiles still doesnt build building
This commit is contained in:
19
src/interfaces/IUserImport.ts
Normal file
19
src/interfaces/IUserImport.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Type as UserType} from "@/interfaces/user";
|
||||
|
||||
export type Type = Exclude<UserType, "admin" | "developer" | "agent" | "mastercorporate">;
|
||||
|
||||
export interface UserImport {
|
||||
id: string;
|
||||
email: string;
|
||||
name: string;
|
||||
passport_id: string;
|
||||
type: Type;
|
||||
groupName: string;
|
||||
entity: string;
|
||||
studentID: string;
|
||||
demographicInformation: {
|
||||
country: string;
|
||||
passport_id: string;
|
||||
phone: string;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user