@barchart/chart-lib 2.215.2 → 2.215.3

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.
@@ -506,7 +506,7 @@ declare module "@barchart/chart-lib" {
506
506
  | "MCCLO"
507
507
  | "NHLAI";
508
508
 
509
- type PlotType =
509
+ export type PlotType =
510
510
  | "Symbol"
511
511
  | "Expression"
512
512
  | "Study"
@@ -1254,7 +1254,16 @@ declare module "@barchart/chart-lib" {
1254
1254
  | MovePaneAccessor
1255
1255
  | TemplateAccessor
1256
1256
  | OutlineAccessor
1257
- | ThemeAccessor;
1257
+ | ThemeAccessor
1258
+ | ClearAccessor;
1259
+
1260
+ export interface ClearAccessor {
1261
+ id: "Clear";
1262
+ context: {
1263
+ studies: boolean;
1264
+ annotations: boolean;
1265
+ };
1266
+ }
1258
1267
 
1259
1268
  export interface MainPlotAccessor {
1260
1269
  id: string;