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