@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
14 lines (13 loc) • 503 B
TypeScript
import { IHeaderPredicate } from "../../interfaces/HeaderPredicate";
export interface ISimplePostMessageData {
uris?: string[];
identifiers?: string[];
}
export interface IPostMessageData extends ISimplePostMessageData {
composedFrom?: ISimplePostMessageData;
}
export interface IUriIdentifierPair {
uri: string;
identifier: string;
}
export declare function convertPostMessageToDrillablePredicates(projectId: string, postMessageData: IPostMessageData): Promise<IHeaderPredicate[]>;