framework/extensions/pusher/js/shims.d.ts
2021-12-12 14:42:37 -05:00

16 lines
345 B
TypeScript

import * as PusherTypes from 'pusher-js';
declare module 'flarum/forum/ForumApplication' {
export default interface ForumApplication {
pusher: Promise<{
channels: {
main: PusherTypes.Channel;
user: PusherTypes.Channel | null;
};
pusher: PusherTypes.default;
}>;
pushedUpdates: Array<any>;
}
}