9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
export const COMMUNITY_CHANGED_EVENT = "community:changed";
|
|
|
|
export function emitCommunityChanged() {
|
|
if (typeof window === "undefined") {
|
|
return;
|
|
}
|
|
window.dispatchEvent(new Event(COMMUNITY_CHANGED_EVENT));
|
|
}
|