Interface Profile

interface Profile {
    aboutMe: string;
    company: null | string;
    countryName: null | string;
    ranking: number;
    realName: string;
    reputation: number;
    school: null | string;
    skillTags: string[];
    starRating: number;
    userAvatar: string;
    websites: string[];
}

Properties

aboutMe: string
company: null | string
countryName: null | string
ranking: number
realName: string
reputation: number
school: null | string
skillTags: string[]
starRating: number
userAvatar: string
websites: string[]

Generated using TypeDoc