0
0
Fork 0
Lurk-Message-API/src/types/config.d.ts
2022-07-31 17:49:23 -06:00

15 lines
No EOL
187 B
TypeScript

interface account {
username: string;
password: string;
admin: boolean;
access: string[];
}
interface config {
server: {
host: string;
port: number;
};
accounts: account[];
}