0
0
Fork 0

Adjust config type

This commit is contained in:
Oliver-Akins 2020-12-24 21:53:11 -07:00
parent 0895755523
commit 09c61f77bd

View file

@ -9,13 +9,16 @@ interface config {
webserver: { webserver: {
enabled: boolean; enabled: boolean;
port: number; port: number;
code_length: number;
hostname: string; hostname: string;
}; };
game: {
hand_size: number;
code_length: number;
cards: { cards: {
type: `csv` //| `sheets`; type: `csv` | `sheets`;
key?: string; key?: string;
questions: string; questions: string;
objects: string; objects: string;
} };
};
} }