Merge branch 'next' into next-passport

This commit is contained in:
Wyatt Johnson
2018-07-25 22:08:17 +00:00
committed by GitHub
7 changed files with 147 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
declare module "simulant" {
type SimulantEvent = {};
interface Simulant {
(event: string, extendedParams: Record<string, any>): SimulantEvent;
fire(
target: HTMLElement,
event: string | SimulantEvent,
extendedParams?: Record<string, any>
): void;
polyfill(): void;
}
const simulant: Simulant;
export default simulant;
}