UNPKG

@gooddata/gooddata-js

Version:
15 lines (14 loc) 305 B
export interface IAttributeHeader { type: "attrLabel"; id: string; uri: string; title: string; } export interface IMetricHeader { type: "metric"; id: string; uri?: string; title: string; format?: string; } export declare type Header = IAttributeHeader | IMetricHeader;