mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 18:07:31 -07:00
91dddc439f
This resolves possible confusion between iceshrimp-js (this project) and iceshrimp-sdk (the package)
35 lines
1 KiB
Markdown
35 lines
1 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [iceshrimp-sdk](./iceshrimp-sdk.md) > [entities](./iceshrimp-sdk.entities.md) > [UserLite](./iceshrimp-sdk.entities.userlite.md)
|
|
|
|
## entities.UserLite type
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
export type UserLite = {
|
|
id: ID;
|
|
username: string;
|
|
host: string | null;
|
|
name: string;
|
|
onlineStatus: "online" | "active" | "offline" | "unknown";
|
|
avatarUrl: string;
|
|
avatarBlurhash: string;
|
|
alsoKnownAs: string[];
|
|
movedToUri: any;
|
|
emojis: {
|
|
name: string;
|
|
url: string;
|
|
}[];
|
|
instance?: {
|
|
name: Instance["name"];
|
|
softwareName: Instance["softwareName"];
|
|
softwareVersion: Instance["softwareVersion"];
|
|
iconUrl: Instance["iconUrl"];
|
|
faviconUrl: Instance["faviconUrl"];
|
|
themeColor: Instance["themeColor"];
|
|
};
|
|
};
|
|
```
|
|
**References:** [ID](./iceshrimp-sdk.entities.id.md)<!-- -->, [Instance](./iceshrimp-sdk.entities.instance.md)
|
|
|