libsql-stateless
Advanced tools
Comparing version 2.5.2 to 2.5.3
@@ -23,3 +23,2 @@ "use strict"; | ||
} | ||
//inner end | ||
/** | ||
@@ -26,0 +25,0 @@ * @async |
@@ -1,9 +0,2 @@ | ||
import { BatchReqStep, BatchStreamResOkData, Config, PipelineResErr, SQLStatement, StatementResOkData, StreamResErrData } from "./types"; | ||
type Result<T, E> = { | ||
isOk: true; | ||
val: T; | ||
} | { | ||
isOk: false; | ||
err: E; | ||
}; | ||
import { BatchReqStep, BatchStreamResOkData, Config, PipelineResErr, Result, SQLStatement, StatementResOkData, StreamResErrData } from "./types"; | ||
/** | ||
@@ -32,2 +25,1 @@ * @async | ||
export declare function libsqlServerCompatCheck(conf: Config): Promise<Result<null, null>>; | ||
export {}; |
@@ -20,3 +20,2 @@ async function hranaFetch(s) { | ||
} | ||
//inner end | ||
/** | ||
@@ -23,0 +22,0 @@ * @async |
@@ -0,1 +1,8 @@ | ||
export type Result<T, E> = { | ||
isOk: true; | ||
val: T; | ||
} | { | ||
isOk: false; | ||
err: E; | ||
}; | ||
export type Config = { | ||
@@ -2,0 +9,0 @@ db_url: string; |
{ | ||
"name": "libsql-stateless", | ||
"version": "2.5.2", | ||
"version": "2.5.3", | ||
"homepage": "https://github.com/DaBigBlob/libsql-stateless#readme", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
24859
379