type Profile = {
Name: string;
Location: string;
Languages: string[];
Learning: string;
AskMeAbout:string[];
Stars: number;
Followers: number;
};
// Constructing the Profile object
const pegasus: Profile = {
Name: "Lokesh Naga Sai Darla",
Location: "India",
Languages: ["Typescript", "Python", "C++", "C", "Javascript"],
Currently : "learning System Design",
AskMeAbout: ["React","Node","NEST","NEXT","FASTAPI"];
Stars: 5,
Followers: 9,
};
- 📫 How to reach me [email protected]