topkat-utils 1.2.26 → 1.2.27

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.
@@ -1,5 +1,5 @@
1
1
  import { ErrorOptions } from "./types";
2
- export { ErrorOptions } from './types';
2
+ export { type ErrorOptions } from './types';
3
3
  export declare function errIfNotSet(objOfVarNamesWithValues: any): void;
4
4
  export declare function err500IfNotSet(objOfVarNamesWithValues: any): void;
5
5
  export declare function errIfEmptyOrNotSet(objOfVarNamesWithValues: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "topkat-utils",
3
- "version": "1.2.26",
3
+ "version": "1.2.27",
4
4
  "type": "commonjs",
5
5
  "types": "index.ts",
6
6
  "main": "dist",
@@ -7,7 +7,7 @@ import { isEmpty } from "./is-empty"
7
7
  import { ErrorOptions } from "./types"
8
8
  import { cleanStackTrace } from "./clean-stack-trace"
9
9
  import { C } from "./logger-utils"
10
- export { ErrorOptions } from './types'
10
+ export { type ErrorOptions } from './types'
11
11
 
12
12
  export function errIfNotSet(objOfVarNamesWithValues) { return errXXXIfNotSet(422, false, objOfVarNamesWithValues) }
13
13