https://github.com/backslash-security/Claw-Hunter
interface Developer {
games: string;
frontEnd: string[];
backEnd: string[];
tools: string[];
aboutMe: string;
}
let maya: Developer = {
frontEnd: ["HTML5", "CSS3", "JavaScript(ES6)", "TypeScript"],
backEnd: ["JSON Web Token", "PostgreSQL", "Node.js", "Express", "C#"],
games: "Unity!"
tools: ["React", "Redux", "Node", "Bootstrap", "Git", "Github"],
aboutMe: "Coding and solving problems gets me excited!"
};



