@barchart/chart-lib 2.201.1 → 2.201.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 +1 -1
- chart-lib/index.js +14 -4
- chart-lib/package.json +1 -1
- chart-lib/schemas/chart.schema.json +1861 -0
- chart-lib/schemas/fields.schema.json +60 -0
- chart-lib/schemas/studies.schema.json +103 -0
chart-lib/barchart.chart.d.ts
CHANGED
|
@@ -997,6 +997,8 @@ declare module "@barchart/chart-lib" {
|
|
|
997
997
|
|
|
998
998
|
export type StudyTimeSeries = CalculableTimeSeries & {
|
|
999
999
|
baseVal(fld: Field, pos: number): FieldValue;
|
|
1000
|
+
innCont(ind: number): TimeSeriesContainer;
|
|
1001
|
+
innVal(ind: number, fld: Field, pos: number): FieldValue;
|
|
1000
1002
|
get base(): TimeSeriesContainer;
|
|
1001
1003
|
atLeast(pos: number, len: number): boolean;
|
|
1002
1004
|
past(pos: number, len: number, fld: Field, container: TimeSeriesContainer): FieldValueArray;
|