15 lines
No EOL
187 B
TypeScript
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[];
|
|
} |