label-printer 0.5.3 → 0.5.4
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/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -91,9 +91,9 @@ declare abstract class Command {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
/**
|
|
94
|
-
* A utility class that helps
|
|
95
|
-
* Should be
|
|
96
|
-
*
|
|
94
|
+
* A utility class that helps grouping commands together
|
|
95
|
+
* Should be implemented with a specific command type to ensure only commands for the same language are
|
|
96
|
+
* grouped together
|
|
97
97
|
*/
|
|
98
98
|
declare abstract class CommandGroup<T extends Command> extends Command {
|
|
99
99
|
private commands;
|
package/dist/index.d.ts
CHANGED
|
@@ -91,9 +91,9 @@ declare abstract class Command {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
/**
|
|
94
|
-
* A utility class that helps
|
|
95
|
-
* Should be
|
|
96
|
-
*
|
|
94
|
+
* A utility class that helps grouping commands together
|
|
95
|
+
* Should be implemented with a specific command type to ensure only commands for the same language are
|
|
96
|
+
* grouped together
|
|
97
97
|
*/
|
|
98
98
|
declare abstract class CommandGroup<T extends Command> extends Command {
|
|
99
99
|
private commands;
|