move index to src, add .env add types, fix > to actual bash like input and history
Some checks failed
Code quality checks / biome (pull_request) Failing after 6s

This commit is contained in:
creations 2025-05-05 18:55:57 -04:00
parent a65ee6fe67
commit 17467258fc
Signed by: creations
GPG key ID: 8F553AA4320FC711
11 changed files with 339 additions and 180 deletions

13
types/lanyard.d.ts vendored Normal file
View file

@ -0,0 +1,13 @@
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;
};