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: {
enabled: boolean;
port: number;
code_length: number;
hostname: string;
};
cards: {
type: `csv` //| `sheets`;
key?: string;
questions: string;
objects: string;
}
game: {
hand_size: number;
code_length: number;
cards: {
type: `csv` | `sheets`;
key?: string;
questions: string;
objects: string;
};
};
}