powerbi-client-vue-js
Version:
VueJS wrapper for powerbi-client library
13 lines (12 loc) • 549 B
TypeScript
import { service, Embed } from 'powerbi-client';
export type EventHandler = (event?: service.ICustomEvent<any>, embeddedEntity?: Embed) => void | null;
/**
* Compare the two maps.
*
* @param oldMap Map of event and corresponding handler method
* @param newMap Map of event and corresponding handler method
*
*/
export declare function areMapsSame(oldMap: Map<string, EventHandler>, newMap: Map<string, EventHandler>): boolean;
export declare const SdkType = "powerbi-client-vue-js";
export declare const SdkWrapperVersion: string;