profilePage/types/config.d.ts
2025-04-05 01:28:29 -04:00

10 lines
140 B
TypeScript

type Environment = {
port: number;
host: string;
development: boolean;
};
type LanyardConfig = {
userId: string;
instance: string;
};