@arancini/core
Advanced tools
Comparing version 4.0.1 to 4.0.2
@@ -6,2 +6,7 @@ import { BitSet } from './bit-set'; | ||
export type Without<E, P extends keyof E> = Pick<E, Exclude<keyof E, P>> & Partial<Pick<E, P>>; | ||
export type Strict<E> = WithoutOptionalProperties<E>; | ||
type OptionalProperties<T> = { | ||
[P in keyof T]-?: undefined extends T[P] ? P : never; | ||
}; | ||
type WithoutOptionalProperties<T> = Pick<T, Exclude<keyof T, OptionalProperties<T>[keyof T]>>; | ||
export type QueryConditionType = 'all' | 'any' | 'not'; | ||
@@ -55,1 +60,2 @@ export type QueryCondition<E> = { | ||
} | ||
export {}; |
@@ -12,3 +12,3 @@ { | ||
"license": "MIT", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"homepage": "https://github.com/isaac-mason/arancini", | ||
@@ -15,0 +15,0 @@ "bugs": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
82892
586