forked from creations/badgeAPI
11 lines
196 B
TypeScript
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";
|
|
};
|