- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
31 lines
1.7 KiB
TypeScript
31 lines
1.7 KiB
TypeScript
import { HttpClient } from "./http/client.js";
|
|
import { WsClient } from "./ws/client.js";
|
|
import { ProtocolVersion } from "./client.js";
|
|
export { WebSocket } from "@libsql/isomorphic-ws";
|
|
export type { ProtocolVersion, ProtocolEncoding } from "./client.js";
|
|
export { Client } from "./client.js";
|
|
export type { DescribeResult, DescribeColumn } from "./describe.js";
|
|
export * from "./errors.js";
|
|
export { Batch, BatchStep, BatchCond } from "./batch.js";
|
|
export type { ParsedLibsqlUrl } from "./libsql_url.js";
|
|
export { parseLibsqlUrl } from "./libsql_url.js";
|
|
export type { StmtResult, RowsResult, RowResult, ValueResult, Row } from "./result.js";
|
|
export type { InSql, SqlOwner } from "./sql.js";
|
|
export { Sql } from "./sql.js";
|
|
export type { InStmt, InStmtArgs } from "./stmt.js";
|
|
export { Stmt } from "./stmt.js";
|
|
export { Stream } from "./stream.js";
|
|
export type { Value, InValue, IntMode } from "./value.js";
|
|
export { HttpClient } from "./http/client.js";
|
|
export { HttpStream } from "./http/stream.js";
|
|
export { WsClient } from "./ws/client.js";
|
|
export { WsStream } from "./ws/stream.js";
|
|
/** Open a Hrana client over WebSocket connected to the given `url`. */
|
|
export declare function openWs(url: string | URL, jwt?: string, protocolVersion?: ProtocolVersion): WsClient;
|
|
/** Open a Hrana client over HTTP connected to the given `url`.
|
|
*
|
|
* If the `customFetch` argument is passed and not `undefined`, it is used in place of the `fetch` function
|
|
* from the global `fetch`. This function is always called with a global `Request` object.
|
|
*/
|
|
export declare function openHttp(url: string | URL, jwt?: string, customFetch?: unknown | undefined, remoteEncryptionKey?: string, protocolVersion?: ProtocolVersion): HttpClient;
|