-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.bubble.d.ts
More file actions
35 lines (35 loc) · 927 Bytes
/
controller.bubble.d.ts
File metadata and controls
35 lines (35 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export default class BubbleController extends DatasetController {
static id: string;
/**
* @type {any}
*/
static overrides: any;
/**
* Parse array of primitive values
* @protected
*/
protected parsePrimitiveData(meta: any, data: any, start: any, count: any): any;
/**
* Parse array of arrays
* @protected
*/
protected parseArrayData(meta: any, data: any, start: any, count: any): any;
/**
* Parse array of objects
* @protected
*/
protected parseObjectData(meta: any, data: any, start: any, count: any): any;
/**
* @protected
*/
protected getMaxOverflow(): number;
/**
* @protected
*/
protected getLabelAndValue(index: any): {
label: any;
value: string;
};
update(mode: any): void;
}
import DatasetController from "../core/core.datasetController.js";