ipv4.army/types/lanyard.d.ts
creations 17467258fc
Some checks failed
Code quality checks / biome (pull_request) Failing after 6s
move index to src, add .env add types, fix > to actual bash like input and history
2025-05-05 18:55:57 -04:00

13 lines
257 B
TypeScript

type LanyardActivity = {
type: number;
name: string;
details?: string;
state?: string;
[key: string]: unknown;
};
type LanyardData = {
discord_status: "online" | "idle" | "dnd" | "offline";
activities: LanyardActivity[];
[key: string]: unknown;
};