1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 06:15:13 +03:00

feat: use modules instead of global bindings (#3245)

This commit is contained in:
Tomas Chmelevskij 2023-01-15 23:40:23 +01:00 committed by GitHub
parent 4412000c91
commit 771b840095
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
60 changed files with 433 additions and 341 deletions

View file

@ -1,7 +1,7 @@
import GUI from "./gui";
import GUI, { TABS } from "./gui";
import FC from "./fc";
import { i18n } from "./localization";
import { generateVirtualApiVersions } from './utils/common';
import { generateVirtualApiVersions, getTextWidth } from './utils/common';
import { get as getConfig } from "./ConfigStorage";
import serial from "./serial";
import MdnsDiscovery from "./mdns_discovery";