File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ type RestrictionData = {
3030export type SubCommand = BasicCommandDefinition & {
3131 arg : string ;
3232 usage : string ;
33+ minArgs ?: number ;
3334 regex ?: boolean ;
3435 fallback ?: boolean ;
3536} ;
Original file line number Diff line number Diff line change @@ -91,11 +91,12 @@ export type FirebotGame = {
9191} ;
9292
9393export type GameManager = {
94- /**
95- * Registers a game in the Firebot system.
96- *
97- * Does not register the game if its `id` already exists in the Firebot system.
98- * @param game that should be registered.
99- */
100- registerGame : ( game : FirebotGame ) => void ;
94+ /**
95+ * Registers a game in the Firebot system.
96+ *
97+ * Does not register the game if its `id` already exists in the Firebot system.
98+ * @param game that should be registered.
99+ */
100+ registerGame : ( game : FirebotGame ) => void ;
101+ getGameSettings : ( string ) => GameSettings ;
101102} ;
You can’t perform that action at this time.
0 commit comments