/** * Definition of an event which a dynamic data source accepts. * * It includes the name of the event and description to be seen and used by end users. * * @beta */ export interface IDynamicDataEventDefinition { /** * Event name */ name: string; /** * User-friendly, localized description of the event. */ description?: string; } //# sourceMappingURL=IDynamicDataEventDefinition.d.ts.map