Skip to content

Instantly share code, notes, and snippets.

@inakianduaga
Created October 2, 2018 15:51
Show Gist options
  • Save inakianduaga/31648e045ca9395776ed9d7d1d07f31a to your computer and use it in GitHub Desktop.
Save inakianduaga/31648e045ca9395776ed9d7d1d07f31a to your computer and use it in GitHub Desktop.
Typesafe CustomEvents on your Frontend - Production Example
// somewhere in another app...
import { ListPage, strictCustomEvent } from "@autoscout24/custom-events";
document.dispatchEvent(
strictCustomEvent(ListPage.ClassifiedListTotalCountUpdate, {
detail: {
totalCount: 42
}
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment