@oamm/textor 1.0.11 → 1.0.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/README.md +16 -0
- package/dist/bin/textor.js +516 -338
- package/dist/bin/textor.js.map +1 -1
- package/dist/index.cjs +499 -287
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +498 -288
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -37,4 +37,20 @@ declare function upgradeConfigCommand(options: any): Promise<void>;
|
|
|
37
37
|
|
|
38
38
|
declare function normalizeStateCommand(options: any): Promise<void>;
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
/**
|
|
41
|
+
* Removes missing references from Textor state.
|
|
42
|
+
* @param {Object} options
|
|
43
|
+
* @param {boolean} options.dryRun
|
|
44
|
+
* @param {boolean} options.yes
|
|
45
|
+
*/
|
|
46
|
+
declare function pruneMissingCommand(options?: {
|
|
47
|
+
dryRun: boolean;
|
|
48
|
+
yes: boolean;
|
|
49
|
+
}): Promise<void>;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Dispatcher for rename commands.
|
|
53
|
+
*/
|
|
54
|
+
declare function renameCommand(type: any, oldName: any, newName: any, options: any): Promise<void>;
|
|
55
|
+
|
|
56
|
+
export { addSectionCommand, adoptCommand, createComponentCommand, initCommand, listSectionsCommand, moveSectionCommand, normalizeStateCommand, pruneMissingCommand, removeComponentCommand, removeSectionCommand, renameCommand, statusCommand, syncCommand, upgradeConfigCommand, validateStateCommand };
|