@open-wa/wa-automate-types-only 4.43.5 → 4.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/server.d.ts +2 -1
- package/package.json +1 -1
package/dist/cli/server.d.ts
CHANGED
@@ -2,10 +2,11 @@
|
|
2
2
|
import http from 'http';
|
3
3
|
import { Client } from '..';
|
4
4
|
export declare const app: import("express-serve-static-core").Express;
|
5
|
-
export declare
|
5
|
+
export declare let server: http.Server;
|
6
6
|
export declare type cliFlags = {
|
7
7
|
[k: string]: number | string | boolean;
|
8
8
|
};
|
9
|
+
export declare const setupHttpServer: (cliConfig: cliFlags) => void;
|
9
10
|
export declare const setUpExpressApp: () => void;
|
10
11
|
export declare const enableCORSRequests: () => void;
|
11
12
|
export declare const setupAuthenticationLayer: (cliConfig: cliFlags) => void;
|