badgeAPI/types/config.d.ts
2025-04-19 11:58:49 -04:00

10 lines
165 B
TypeScript

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