mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
export = DataModelSection;
|
|
declare class DataModelSection {
|
|
constructor(data: any);
|
|
type: string;
|
|
title: any;
|
|
subtitle: any;
|
|
metric_value: any;
|
|
comparison_indicator: any;
|
|
series_configuration: {
|
|
line_series: {
|
|
lines_data: any;
|
|
domain_axis: any;
|
|
measure_axis: any;
|
|
};
|
|
};
|
|
}
|