Type alias IUserDetailed

IUserDetailed: IUserLite & {
    alsoKnownAs: string[];
    bannerBlurhash: string | null;
    bannerColor: string | null;
    bannerUrl: string | null;
    birthday: string | null;
    createdAt: string;
    description: string | null;
    ffVisibility: "public" | "followers" | "private";
    fields: {
        name: string;
        value: string;
    }[];
    followersCount: number;
    followingCount: number;
    hasPendingFollowRequestFromYou: boolean;
    hasPendingFollowRequestToYou: boolean;
    isAdmin: boolean;
    isBlocked: boolean;
    isBlocking: boolean;
    isFollowed: boolean;
    isFollowing: boolean;
    isLocked: boolean;
    isModerator: boolean;
    isMuted: boolean;
    isSilenced: boolean;
    isSuspended: boolean;
    lang: string | null;
    lastFetchedAt?: string;
    location: string | null;
    movedTo: string;
    notesCount: number;
    pinnedNoteIds: string[];
    pinnedNotes: INote[];
    pinnedPage: IPage | null;
    pinnedPageId: string | null;
    publicReactions: boolean;
    securityKeys: boolean;
    twoFactorEnabled: boolean;
    updatedAt: string | null;
    uri: string | null;
    url: string | null;
}

Type declaration

  • alsoKnownAs: string[]
  • bannerBlurhash: string | null
  • bannerColor: string | null
  • bannerUrl: string | null
  • birthday: string | null
  • createdAt: string
  • description: string | null
  • ffVisibility: "public" | "followers" | "private"
  • fields: {
        name: string;
        value: string;
    }[]
  • followersCount: number
  • followingCount: number
  • hasPendingFollowRequestFromYou: boolean
  • hasPendingFollowRequestToYou: boolean
  • isAdmin: boolean
  • isBlocked: boolean
  • isBlocking: boolean
  • isFollowed: boolean
  • isFollowing: boolean
  • isLocked: boolean
  • isModerator: boolean
  • isMuted: boolean
  • isSilenced: boolean
  • isSuspended: boolean
  • lang: string | null
  • Optional lastFetchedAt?: string
  • location: string | null
  • movedTo: string
  • notesCount: number
  • pinnedNoteIds: string[]
  • pinnedNotes: INote[]
  • pinnedPage: IPage | null
  • pinnedPageId: string | null
  • publicReactions: boolean
  • securityKeys: boolean
  • twoFactorEnabled: boolean
  • updatedAt: string | null
  • uri: string | null
  • url: string | null

Generated using TypeDoc