forked from creations/profilePage
10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
};
|
|
|
|
type LanyardConfig = {
|
|
userId: string;
|
|
instance: string;
|
|
};
|