yaschema-api
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -1,2 +0,2 @@ | ||
export type OptionalIfPossiblyUndefined<K extends string | number | symbol, T> = [T] extends [undefined] ? Partial<Record<K, T>> : Record<K, T>; | ||
export type OptionalIfPossiblyUndefined<K extends string | number | symbol, T> = [T] extends [undefined] ? Partial<Record<K, T>> : [T] extends [T | undefined] ? Partial<Record<K, T>> : Record<K, T>; | ||
//# sourceMappingURL=OptionalIfPossiblyUndefined.d.ts.map |
{ | ||
"name": "yaschema-api", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Yet another API", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
export type OptionalIfPossiblyUndefined<K extends string | number | symbol, T> = [T] extends [undefined] | ||
? Partial<Record<K, T>> | ||
: [T] extends [T | undefined] | ||
? Partial<Record<K, T>> | ||
: Record<K, T>; |
Sorry, the diff of this file is not supported yet
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
86080
1153