@types/flat
Advanced tools
Comparing version 5.0.0 to 5.0.1
@@ -12,32 +12,32 @@ // Type definitions for flat 5.0.0 | ||
declare namespace FlatTypes { | ||
interface FlattenOptions { | ||
delimiter?: string; | ||
safe?: boolean; | ||
maxDepth?: number; | ||
interface FlattenOptions { | ||
delimiter?: string; | ||
safe?: boolean; | ||
maxDepth?: number; | ||
transformKey?: (key: string) => string; | ||
} | ||
} | ||
interface Flatten { | ||
<TTarget, TResult>( | ||
target: TTarget, | ||
options?: FlattenOptions | ||
): TResult; | ||
interface Flatten { | ||
<TTarget, TResult>( | ||
target: TTarget, | ||
options?: FlattenOptions | ||
): TResult; | ||
flatten: Flatten; | ||
unflatten: Unflatten; | ||
} | ||
flatten: Flatten; | ||
unflatten: Unflatten; | ||
} | ||
interface UnflattenOptions { | ||
delimiter?: string; | ||
object?: boolean; | ||
overwrite?: boolean; | ||
interface UnflattenOptions { | ||
delimiter?: string; | ||
object?: boolean; | ||
overwrite?: boolean; | ||
transformKey?: (key: string) => string; | ||
} | ||
} | ||
interface Unflatten { | ||
<TTarget, TResult>( | ||
target: TTarget, | ||
options?: UnflattenOptions | ||
): TResult; | ||
} | ||
interface Unflatten { | ||
<TTarget, TResult>( | ||
target: TTarget, | ||
options?: UnflattenOptions | ||
): TResult; | ||
} | ||
} |
{ | ||
"name": "@types/flat", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"description": "TypeScript definitions for flat", | ||
@@ -27,4 +27,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "ca632e1feb4e47786629359c864a8c5123ec10a81baf2589cc3e1de0f491ee24", | ||
"typeScriptVersion": "2.8" | ||
"typesPublisherContentHash": "bed5e4049506d65206ddc4f652a1aaed6bb5c6a5096117d0da172487a4bc3c0c", | ||
"typeScriptVersion": "3.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Mon, 02 Mar 2020 17:51:17 GMT | ||
* Last updated: Fri, 15 May 2020 04:09:29 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
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
3562