UNPKG

powerbi-report-authoring

Version:

A library for authoring Power BI reports while embedded into your apps. Provides service which makes it easy to change report and visual elements in session. It gives APIs such as creating visual, changing visual properties, etc ...

12 lines (11 loc) 304 B
/*! powerbi-report-authoring v3.0.0 | (c) 2019 Microsoft Corporation MIT */ import { VisualDescriptor } from "powerbi-client"; /** * Return value of methods that create a visual * * @export * @interface IVisualResponse */ export interface IVisualResponse { visual: VisualDescriptor; }