export function createCustomEvent(type: string, details?: T): CustomEvent { return new CustomEvent(type, { detail: details, }); }