mirror of
https://github.com/wassname/talk.git
synced 2026-09-09 11:38:08 +08:00
Merge branch 'next' into next-passport
This commit is contained in:
Vendored
+16
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user