@malloydata/malloy 0.0.19 → 0.0.20-dev230110224239
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/runtime_types.d.ts +1 -0
- package/package.json +1 -1
package/dist/runtime_types.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export interface Connection extends InfoConnection {
|
|
|
76
76
|
isPool(): this is PooledConnection;
|
|
77
77
|
canPersist(): this is PersistSQLResults;
|
|
78
78
|
canStream(): this is StreamingConnection;
|
|
79
|
+
close(): Promise<void>;
|
|
79
80
|
}
|
|
80
81
|
export interface TestableConnection extends Connection {
|
|
81
82
|
test(): Promise<void>;
|