mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
18 lines
288 B
TypeScript
18 lines
288 B
TypeScript
|
export interface IData {
|
||
|
viewId: string;
|
||
|
dimensions?: IDimension[];
|
||
|
pageSize?: number;
|
||
|
metrics?: IMetric[];
|
||
|
}
|
||
|
|
||
|
export interface IDimension {
|
||
|
name?: string;
|
||
|
histogramBuckets?: string[];
|
||
|
}
|
||
|
|
||
|
export interface IMetric {
|
||
|
expression?: string;
|
||
|
alias?: string;
|
||
|
formattingType?: string;
|
||
|
}
|