xdbc 1.0.111 → 1.0.112

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/DBC/OR.ts +1 -1
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.111",
2
+ "version": "1.0.112",
3
3
  "name": "xdbc",
4
4
  "scripts": {
5
5
  "docs": "typedoc",
package/src/DBC/OR.ts CHANGED
@@ -156,7 +156,7 @@ export class OR extends DBC {
156
156
  * @returns The **CANDIDATE** **toCheck** doesn't fulfill this {@link OR }.
157
157
  *
158
158
  * @throws A {@link DBC.Infringement } if the **CANDIDATE** **toCheck** does not fulfill this {@link OR }.*/
159
- public static tsCheck<CANDIDATE>( toCheck : any | undefined | null,conditions: Array<{
159
+ public static tsCheck<CANDIDATE>( toCheck : unknown | undefined | null,conditions: Array<{
160
160
  check: (toCheck: unknown | undefined | null | object) => boolean | string;
161
161
  }> ) : CANDIDATE {
162
162
  const result = OR.checkAlgorithm(conditions,toCheck );