import type { Account, Attachment, Status } from "@versia/client/types"; import mitt from "mitt"; import type { Identity } from "./Identities"; type ApplicationEvents = { "note:reply": Status; "note:delete": Status; "note:edit": Status; "note:like": Status; "note:unlike": Status; "note:reblog": Status; "note:unreblog": Status; "note:quote": Status; "note:report": Status; "composer:open": undefined; "composer:reply": Status; "composer:quote": Status; "composer:edit": Status; "composer:send": Status; "composer:send-edit": Status; "composer:close": undefined; "account:report": Account; "account:update": Account; "attachment:view": Attachment; "identity:change": Identity; "preferences:open": undefined; error: { code: string; title: string; message: string; } | null; }; const emitter = mitt(); export const useEvent = emitter.emit; export const useListen = emitter.on;