DashboardPluginDescriptor
Home > @gooddata/sdk-ui-dashboard > DashboardPluginDescriptor
DashboardPluginDescriptor type
Basic set of information about a Dashboard plugin.
Signature:
export type DashboardPluginDescriptor = {
readonly author: string;
readonly displayName: string;
readonly version: string;
readonly shortDescription?: string;
readonly longDescription?: string;
readonly debugName?: string;
readonly compatibility?: string;
readonly minEngineVersion: string;
readonly maxEngineVersion?: string;
};