Improved audio ui, bug fixes

This commit is contained in:
Sebastien L
2023-04-07 10:53:22 -04:00
parent 1e0fce53c7
commit 7ac628a29d
34 changed files with 1176 additions and 169 deletions

View File

@@ -1,3 +1,4 @@
declare const PORT: 9100;
import HtmlWebPackPlugin = require("html-webpack-plugin");
export namespace entry {
const test: string;
@@ -17,7 +18,7 @@ export namespace devServer {
}
export const open: boolean;
export const compress: boolean;
export const port: number;
export { PORT as port };
export const host: string;
export const allowedHosts: string;
export const headers: {
@@ -33,3 +34,4 @@ export namespace devServer {
export function onBeforeSetupMiddleware(devServer: any): void;
}
export const plugins: HtmlWebPackPlugin[];
export {};