@avandar/acclimate 0.1.2 → 0.1.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.cts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { EmptyObject, Simplify, CamelCasedProperties } from 'type-fest';
2
2
 
3
+ type CLIParamDataType = string | number | boolean | undefined;
3
4
  type CLIPositionalParamName = string;
4
5
  type CLICommandName = string;
5
6
  type CLIFullOptionName = `--${string}`;
@@ -220,4 +221,4 @@ type Acclimate = {
220
221
  };
221
222
  declare const Acclimate: Acclimate;
222
223
 
223
- export { Acclimate };
224
+ export { Acclimate, type AnyCLI, type CLICommandName, type CLIFullOptionName, type CLIOptionAlias, type CLIOptionParam, type CLIParamDataType, type CLIPositionalParam, type IAcclimateCLI };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { EmptyObject, Simplify, CamelCasedProperties } from 'type-fest';
2
2
 
3
+ type CLIParamDataType = string | number | boolean | undefined;
3
4
  type CLIPositionalParamName = string;
4
5
  type CLICommandName = string;
5
6
  type CLIFullOptionName = `--${string}`;
@@ -220,4 +221,4 @@ type Acclimate = {
220
221
  };
221
222
  declare const Acclimate: Acclimate;
222
223
 
223
- export { Acclimate };
224
+ export { Acclimate, type AnyCLI, type CLICommandName, type CLIFullOptionName, type CLIOptionAlias, type CLIOptionParam, type CLIParamDataType, type CLIPositionalParam, type IAcclimateCLI };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avandar/acclimate",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "A lightweight TypeScript framework for building CLI tools.",
5
5
  "license": "MIT",
6
6
  "type": "module",