From 77e86600b6bc1503e799456fd224836b103c6707 Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Wed, 21 Aug 2024 11:23:47 +0200 Subject: [PATCH] feat: conversation manager ready event --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 708c531..cc1f9d9 100644 --- a/index.d.ts +++ b/index.d.ts @@ -311,6 +311,7 @@ declare module "messaging" { type MessageUpdate = "read" | "release" | "save" | "unsave" | "erase" | "screenshot" | "screen_record" | "replay" | "reaction" | "remove_reaction" | "revoke_transcription" | "allow_transcription" | "erase_saved_story_media"; + function onConversationManagerReady(callback: () => void): void; function isPresent(): boolean; function newSnapUUID(uuid: string): SnapUUID;