mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
23 lines
743 B
TypeScript
23 lines
743 B
TypeScript
interface ActivityPayload {
|
|
details?: string | undefined;
|
|
state?: string | undefined;
|
|
startTimestamp?: number | null | undefined;
|
|
largeImageKey?: string | undefined;
|
|
largeImageText?: string | undefined;
|
|
smallImageKey?: string | undefined;
|
|
smallImageText?: string | undefined;
|
|
partyId?: string | undefined;
|
|
partySize?: number | undefined;
|
|
partyMax?: number | undefined;
|
|
matchSecret?: string | undefined;
|
|
joinSecret?: string | undefined;
|
|
spectateSecret?: string | undefined;
|
|
buttons?: {
|
|
label: string;
|
|
url: string;
|
|
}[] | undefined;
|
|
instance?: boolean | undefined;
|
|
}
|
|
export declare function activity(previous?: ActivityPayload): Promise<ActivityPayload>;
|
|
export {};
|