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
Some checks failed
Code quality checks / biome (pull_request) Failing after 6s
This commit is contained in:
parent
a65ee6fe67
commit
17467258fc
11 changed files with 339 additions and 180 deletions
13
types/lanyard.d.ts
vendored
Normal file
13
types/lanyard.d.ts
vendored
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue