get the whole friends system to work now
This commit is contained in:
parent
342fd30d62
commit
126acf52f3
34 changed files with 1101 additions and 40 deletions
|
|
@ -3,10 +3,12 @@ import { definePrefix, type Puuid } from "./puuid"
|
|||
export const UserID = definePrefix("user");
|
||||
export const GroupID = definePrefix("group");
|
||||
export const ServerID = definePrefix("srv");
|
||||
export const FriendRequestID = definePrefix("frq");
|
||||
|
||||
export type UserId = Puuid<"user">;
|
||||
export type GroupId = Puuid<"group">;
|
||||
export type ServerId = Puuid<"srv">;
|
||||
export type FriendRequestID = Puuid<"frq">;
|
||||
|
||||
export const Status: Record<string, 1|2|3> = {
|
||||
OFFLINE: 1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue