@types/mysql
Advanced tools
Comparing version 2.15.8 to 2.15.9
@@ -356,3 +356,3 @@ // Type definitions for mysql 2.15 | ||
export type TypeCast = boolean | ( | ||
(field: FieldInfo | ||
(field: UntypedFieldInfo | ||
& { type: string, length: number, string(): string, buffer(): Buffer, geometry(): null | GeometryType }, | ||
@@ -705,3 +705,3 @@ next: () => void) => any); | ||
export interface FieldInfo { | ||
export interface UntypedFieldInfo { | ||
catalog: string; | ||
@@ -715,3 +715,2 @@ db: string; | ||
length: number; | ||
type: Types; | ||
flags: number; | ||
@@ -723,1 +722,5 @@ decimals: number; | ||
} | ||
export interface FieldInfo extends UntypedFieldInfo { | ||
type: Types; | ||
} |
{ | ||
"name": "@types/mysql", | ||
"version": "2.15.8", | ||
"version": "2.15.9", | ||
"description": "TypeScript definitions for mysql", | ||
@@ -39,4 +39,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "decd76fa163e23754d15d73f6134524ba77150798e140169ab801bd0891f7991", | ||
"typesPublisherContentHash": "1a5206d67397cc93d10034fbff825eaca6a25c811d31769354920c5d3111a16e", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mysql | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mysql. | ||
Additional Details | ||
* Last updated: Thu, 07 Nov 2019 17:47:45 GMT | ||
* Dependencies: @types/node | ||
### Additional Details | ||
* Last updated: Tue, 25 Feb 2020 18:40:45 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
* Global values: none | ||
# Credits | ||
These definitions were written by William Johnston <https://github.com/wjohnsto>, Kacper Polak <https://github.com/kacepe>, Krittanan Pingclasai <https://github.com/kpping>, and James Munro <https://github.com/jdmunro>. | ||
These definitions were written by [ William Johnston](https://github.com/wjohnsto), [Kacper Polak](https://github.com/kacepe), [Krittanan Pingclasai](https://github.com/kpping), and [James Munro](https://github.com/jdmunro). |
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
26623
590