interface AboutMe {
email: string;
langs: string[];
birthday: Date;
}
interface Coding {
Langs: {
Expert: string[];
Intermediate: string[];
Learning: string[];
};
FrontEnd: {
Expert: string[];
Intermediate: string[];
Learning: string[];
};
BackEnd: {
Expert: string[];
Intermediate: string[];
Learning: string[];
};
MobileDev: {
Expert: string[];
Intermediate: string[];
Learning: string[];
};
Database: {
Expert: string[];
Intermediate: string[];
Learning: string[];
};
Hosting: {
Expert: string[];
Intermediate: string[];
Learning: string[];
};
Specialities: string[];
Environment: string[];
}
class TheDollMaster98 {
aboutMe: AboutMe = {
email: "[email protected]",
langs: ["Italian", "English"],
birthday: new Date(1998, 3, 27),
};
coding: Coding = {
Langs: {
Expert: ["JavaScript", "TypeScript"],
Intermediate: ["GoLang"],
Learning: ["Dart"],
},
FrontEnd: {
Expert: ["Angular", "Bootstrap 5", "Material Design"],
Intermediate: ["React", "Tailwind"],
Learning: [],
},
BackEnd: {
Expert: ["Firebase"],
Intermediate: ["Nodejs", "Express"],
Learning: [],
},
Database: {
Expert: ["Firebase"],
Intermediate: ["MongoDB"],
Learning: [],
},
Hosting: {
Expert: ["Firebase"],
Intermediate: ["Nodejs", "Express", "Heroku"],
Learning: [],
},
MobileDev: {
Expert: ["Firebase"],
Intermediate: ["Flutter"],
Learning: ["Riverpod", "Bloc", "React Native"],
},
Specialities: ["Front-End Dev", "Flutter Mobile Dev", "Web Design"],
Environment: ["VSCode", "Android Studio"],
};
}