@cloudflare/types
Advanced tools
Comparing version 1.0.19 to 1.0.20
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.0.20](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.19...@cloudflare/types@1.0.20) (2019-04-22) | ||
**Note:** Version bump only for package @cloudflare/types | ||
## [1.0.19](http://stash.cfops.it:7999/fe/stratus/compare/@cloudflare/types@1.0.18...@cloudflare/types@1.0.19) (2019-04-15) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@cloudflare/types", | ||
"description": "", | ||
"version": "1.0.19", | ||
"version": "1.0.20", | ||
"types": "./src", | ||
@@ -23,3 +23,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "a403be568750685fe05bc621bb985c0e2b901d6a" | ||
"gitHead": "bc743095b79efaec60bbe1dd2a088309f089f119" | ||
} |
@@ -7,3 +7,3 @@ // (A - keys of B) | ||
// type result = Omit<A, keyof B> = {a: string, c: boolean} | ||
export type Omit<A, B extends keyof A> = Pick<A, Exclude<keyof A, B>>; | ||
export type Omit<A, B> = Pick<A, Exclude<keyof A, B>>; | ||
@@ -10,0 +10,0 @@ /** |
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
22897