@oamm/textor 1.0.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.
@@ -0,0 +1,36 @@
1
+ declare function initCommand(options: any): Promise<void>;
2
+
3
+ declare function addSectionCommand(route: any, featurePath: any, options: any): Promise<void>;
4
+
5
+ declare function removeSectionCommand(route: any, featurePath: any, options: any): Promise<void>;
6
+
7
+ /**
8
+ * Move a section (route + feature).
9
+ *
10
+ * SCOPE GUARANTEES:
11
+ * - Automatically updates imports in the moved route file.
12
+ * - Automatically updates internal imports/references within the moved feature directory.
13
+ * - Repo-wide scan for import updates is available via the --scan flag.
14
+ *
15
+ * NON-GOALS (What it won't rewrite):
16
+ * - String literals (unless they match the component name exactly in a JSX context).
17
+ * - Markdown documentation (except for those registered in state).
18
+ * - Dynamic imports with complex template literals.
19
+ */
20
+ declare function moveSectionCommand(fromRoute: any, fromFeature: any, toRoute: any, toFeature: any, options: any): Promise<void>;
21
+
22
+ declare function createComponentCommand(componentName: any, options: any): Promise<void>;
23
+
24
+ declare function removeComponentCommand(identifier: any, options: any): Promise<void>;
25
+
26
+ declare function listSectionsCommand(): Promise<void>;
27
+
28
+ declare function validateStateCommand(options: any): Promise<void>;
29
+
30
+ declare function statusCommand(): Promise<void>;
31
+
32
+ declare function syncCommand(options: any): Promise<void>;
33
+
34
+ declare function adoptCommand(identifier: any, options: any): Promise<void>;
35
+
36
+ export { addSectionCommand, adoptCommand, createComponentCommand, initCommand, listSectionsCommand, moveSectionCommand, removeComponentCommand, removeSectionCommand, statusCommand, syncCommand, validateStateCommand };