@barchart/chart-lib 2.325.0 → 2.325.2
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.
- chart-lib/barchart.chart.d.ts +2 -0
- chart-lib/barchart.chart.js +20 -1
- chart-lib/package.json +1 -1
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -2361,6 +2361,8 @@ declare module "@barchart/chart-lib" {
|
|
|
2361
2361
|
getMetaDataSource(): IMetaDataSource;
|
|
2362
2362
|
/** The instance producing record objects. */
|
|
2363
2363
|
getRecordSource(): IRecordSource;
|
|
2364
|
+
/** Perform any cleanup: close connections, unsubscribe etc. */
|
|
2365
|
+
shutdown(): void;
|
|
2364
2366
|
}
|
|
2365
2367
|
|
|
2366
2368
|
export type Factory<T> = new () => T;
|