@thinksoftai/cli 1.6.11 → 1.6.13
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/commands/export.d.ts +11 -0
- package/dist/commands/export.js +1228 -0
- package/dist/commands/export.js.map +1 -0
- package/dist/index.js +27 -2
- package/dist/index.js.map +1 -1
- package/dist/utils/api.d.ts +5 -0
- package/dist/utils/api.js +11 -0
- package/dist/utils/api.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Export command - export app as self-hosted backend code
|
|
3
|
+
*/
|
|
4
|
+
interface ExportOptions {
|
|
5
|
+
app?: string;
|
|
6
|
+
format?: string;
|
|
7
|
+
includeRules?: boolean;
|
|
8
|
+
output?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function exportBackend(options?: ExportOptions): Promise<void>;
|
|
11
|
+
export {};
|