forked from creations/badgeAPI
10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
};
|
|
|
|
type badgeURLMap = {
|
|
service: string;
|
|
url: string | ((userId: string) => string);
|
|
};
|