export interface IComponentBinding { /** * The DOM element ID to bind */ id: string; /** * The event name to bind */ eventName: string; /** * Function to call when the event is fired */ callbackFunction: (e: CustomEvent) => void; }