badgeAPI/types/config.d.ts
creations cfbcaa4851
All checks were successful
Code quality checks / biome (push) Successful in 9s
first commit
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);
};