badgeAPI/types/config.d.ts
2025-04-19 21:20:21 -04:00

11 lines
196 B
TypeScript

type Environment = {
port: number;
host: string;
development: boolean;
};
type badgeURLMap = {
service: string;
url: string | ((userId: string) => string);
authType: "none" | "DISCORD";
};