UNPKG

weverse

Version:
12 lines (11 loc) 488 B
import { WeverseNotification, WeversePost, WeverseMedia, WeverseComment } from "."; export declare type WeverseEvents = { error: (error: Error) => void; init: (initialized: boolean) => void; notification: (notification: WeverseNotification) => void; post: (post: WeversePost) => void; media: (media: WeverseMedia) => void; comment: (comment: WeverseComment, post: WeversePost) => void; login: (result: boolean) => void; poll: (status: boolean) => void; };