-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
webui: implicit build-only consts via .d file
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
declare global { | ||
var MODULE_OTA: boolean; | ||
var MODULE_HA: boolean; | ||
var MODULE_SNS: boolean; | ||
var MODULE_GARLAND: boolean; | ||
var MODULE_THERMOSTAT: boolean; | ||
var MODULE_LIGHTFOX: boolean; | ||
var MODULE_RELAY: boolean; | ||
var MODULE_RFM69: boolean; | ||
var MODULE_RFB: boolean; | ||
var MODULE_CMD: boolean; | ||
var MODULE_DBG: boolean; | ||
var MODULE_API: boolean; | ||
var MODULE_LED: boolean; | ||
var MODULE_LIGHT: boolean; | ||
var MODULE_SCH: boolean; | ||
var MODULE_RPN: boolean; | ||
var MODULE_DCZ: boolean; | ||
var MODULE_TSPK: boolean; | ||
var MODULE_CURTAIN: boolean; | ||
var MODULE_LOCAL: boolean; | ||
} | ||
|
||
export {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/// <reference path="index.build.d.mts" /> | ||
|
||
/** | ||
* @typedef {function(string, any): void} Listener | ||
*/ | ||
|