add Event Listener add Event Listener : ( ( event : HighlightEvent ,
listener : ( ( ... args : any [] ) => void ) ) => void ) Type declaration ( event , listener ) : void Parameters event : HighlightEvent listener : ( ( ... args : any [] ) => void ) ( ... args ) : void Returns void Returns void agents agents : { callAgentTool : ( ( agentId : string ,
params : any ) => Promise < void > ) ; getAllAgents : ( ( ) => Promise < StoredMcpAgent [] > ) ; getAllToolsFromAgents : ( ( ) => Promise < ChatAgent [] > ) ; getCurrentAgent : ( ( ) => Promise < undefined | StoredMcpAgent > ) ; getWhitelistedAgents : ( ( ) => Promise < { authToken : null | string ; description : string ; id : string ; logo : string ; name : string ; setupRequired : boolean ; url : string ; } [] > ) ; startAgent : ( ( agentId : string ,
options : StoredMcpAgent ) => Promise < void > ) ; } Type declaration call Agent Tool : ( ( agentId : string , params : any ) => Promise < void > ) ( agentId , params ) : Promise < void > Parameters agentId : string params : any Returns Promise < void > get All Agents : ( ( ) => Promise < StoredMcpAgent [] > ) get All Tools From Agents : ( ( ) => Promise < ChatAgent [] > ) get Current Agent : ( ( ) => Promise < undefined | StoredMcpAgent > ) get Whitelisted Agents : ( ( ) => Promise < { authToken : null | string ; description : string ; id : string ; logo : string ; name : string ; setupRequired : boolean ; url : string ; } [] > ) ( ) : Promise < { authToken : null | string ; description : string ; id : string ; logo : string ; name : string ; setupRequired : boolean ; url : string ; } [] > Returns Promise < { authToken : null | string ; description : string ; id : string ; logo : string ; name : string ; setupRequired : boolean ; url : string ; } [] > start Agent : ( ( agentId : string , options : StoredMcpAgent ) => Promise < void > ) ( agentId , options ) : Promise < void > Returns Promise < void > app app : { addListener : ( ( event : HighlightEvent ,
listener : ( ( ... args : any [] ) => void ) ) => ( ( ) => void ) ) ; compressBase64Image : ( ( base64Image : string ,
options : { format : "png" | "jpg" ; quality : number ; } ) => Promise < string > ) ; getHotkey : ( ( ) => Promise < string > ) ; getReleaseChannel : ( ( ) => Promise < string > ) ; hasDesktopShortcut : ( ( ) => Promise < boolean > ) ; installApp : ( ( appSlug : string ) => Promise < void > ) ; isAppInstalled : ( ( appId : string ) => Promise < boolean > ) ; openApp : ( ( appId : string ) => Promise < void > ) ; requestCreateDesktopShortcut : ( ( ) => Promise < void > ) ; setBackgroundStatus : ( ( status : boolean ) => Promise < void > ) ; showNotification : ( ( title : string ,
body : string ) => void ) ; showToast : ( ( title : string ,
button1 ?: ToastButton ,
button2 ?: ToastButton ) => void ) ; } Type declaration add Listener : ( ( event : HighlightEvent , listener : ( ( ... args : any [] ) => void ) ) => ( ( ) => void ) ) compress Base64 Image : ( ( base64Image : string , options : { format : "png" | "jpg" ; quality : number ; } ) => Promise < string > ) get Hotkey : ( ( ) => Promise < string > ) ( ) : Promise < string > Returns Promise < string > get Release Channel : ( ( ) => Promise < string > ) ( ) : Promise < string > Returns Promise < string > has Desktop Shortcut : ( ( ) => Promise < boolean > ) ( ) : Promise < boolean > Returns Promise < boolean > install App : ( ( appSlug : string ) => Promise < void > ) is App Installed : ( ( appId : string ) => Promise < boolean > ) open App : ( ( appId : string ) => Promise < void > ) request Create Desktop Shortcut : ( ( ) => Promise < void > ) ( ) : Promise < void > Returns Promise < void > set Background Status : ( ( status : boolean ) => Promise < void > ) ( status ) : Promise < void > Returns Promise < void > show Notification : ( ( title : string , body : string ) => void ) ( title , body ) : void Parameters title : string body : string Returns void show Toast : ( ( title : string , button1 ?: ToastButton , button2 ?: ToastButton ) => void ) ( title , button1 ? , button2 ? ) : void Returns void app Storage app Storage : { all : ( ( ) => Record < string , any > ) ; clear : ( ( ) => void ) ; delete : ( ( key : string ) => void ) ; get : ( ( key : string ) => any ) ; isHydrated : ( ( ) => boolean ) ; set : ( ( key : string , value : any ) => void ) ; setAll : ( ( value : Record < string , any > ) => void ) ; whenHydrated : ( ( ) => Promise < boolean > ) ; }
auth auth : { signIn : ( ( ) => Promise < { accessToken : string ; refreshToken : string ; } > ) ; }
Type declaration sign In : ( ( ) => Promise < { accessToken : string ; refreshToken : string ; } > ) ( ) : Promise < { accessToken : string ; refreshToken : string ; } > Returns Promise < { accessToken : string ; refreshToken : string ; } > chats chats : { getChatSettings : ( ( ) => Promise < ChatSettings > ) ; newChat : ( ( ) => Promise < void > ) ; newChatWithAudioNote : ( ( audioNoteAttachment : { isCurrentConversation ?: boolean ; meeting ?: any ; startTime ?: Date ; title ?: string ; type : "conversation" ; value ?: string ; } ) => Promise < void > ) ; newChatWithMention : ( ( ) => Promise < void > ) ; newShortcutChat : ( ( shortcut ?: any ) => Promise < void > ) ; onChatSettingsUpdated : ( ( callback : ( ( settings : ChatSettings ) => void ) ) => void ) ; openChat : ( ( chatId : string ) => Promise < void > ) ; setChatSettings : ( ( settings : Partial < ChatSettings > ) => Promise < void > ) ; } conversations conversations : { addConversation : ( ( conversation : ConversationData ) => Promise < void > ) ; deleteAllConversations : ( ( ) => Promise < void > ) ; deleteConversation : ( ( id : string ) => Promise < void > ) ; getAllConversations : ( ( ) => Promise < ConversationData [] > ) ; getAsrCloudFallback : ( ( ) => Promise < boolean > ) ; getAsrDuration : ( ( ) => Promise < number > ) ; getAutoClearDays : ( ( ) => Promise < number > ) ; getAutoSaveTime : ( ( ) => Promise < number > ) ; getConversationById : ( ( id : string ) => Promise < ConversationData > ) ; getConversationsWithinTimeWindowDays : ( ( timeWindow : number ) => Promise < ConversationData [] > ) ; getCurrentConversation : ( ( ) => Promise < string > ) ; getElapsedTime : ( ( ) => Promise < number > ) ; getRecentConversations : ( ( ) => Promise < ConversationData [] > ) ; saveCurrentConversation : ( ( ) => Promise < void > ) ; setAsrCloudFallback : ( ( enabled : boolean ) => Promise < void > ) ; setAsrDuration : ( ( duration : number ) => Promise < void > ) ; setAutoClearDays : ( ( days : number ) => Promise < void > ) ; setAutoSaveTime : ( ( time : number ) => Promise < void > ) ; updateConversation : ( ( conversation : ConversationData ) => Promise < void > ) ; updateConversations : ( ( conversations : ConversationData [] ) => Promise < void > ) ; } Type declaration add Conversation : ( ( conversation : ConversationData ) => Promise < void > ) delete All Conversations : ( ( ) => Promise < void > ) delete Conversation : ( ( id : string ) => Promise < void > ) get All Conversations : ( ( ) => Promise < ConversationData [] > ) get Asr Cloud Fallback : ( ( ) => Promise < boolean > ) get Asr Duration : ( ( ) => Promise < number > ) ( ) : Promise < number > Returns Promise < number > get Auto Clear Days : ( ( ) => Promise < number > ) get Auto Save Time : ( ( ) => Promise < number > ) get Conversation By Id : ( ( id : string ) => Promise < ConversationData > ) get Conversations Within Time Window Days : ( ( timeWindow : number ) => Promise < ConversationData [] > ) get Current Conversation : ( ( ) => Promise < string > ) get Elapsed Time : ( ( ) => Promise < number > ) get Recent Conversations : ( ( ) => Promise < ConversationData [] > ) save Current Conversation : ( ( ) => Promise < void > ) set Asr Cloud Fallback : ( ( enabled : boolean ) => Promise < void > ) set Asr Duration : ( ( duration : number ) => Promise < void > ) ( duration ) : Promise < void > Returns Promise < void > set Auto Clear Days : ( ( days : number ) => Promise < void > ) set Auto Save Time : ( ( time : number ) => Promise < void > ) update Conversation : ( ( conversation : ConversationData ) => Promise < void > ) update Conversations : ( ( conversations : ConversationData [] ) => Promise < void > ) get Version get Version : ( ( ) => Promise < string > )
inference inference : { getEmbedding : ( ( text : string ) => Promise < number [] > ) ; getTextPrediction : ( ( messages : LLMMessage [] ,
provider ?: string ,
params ?: ChatOpenAIParams ) => AsyncGenerator < string , any , unknown > ) ; getTextPredictionSlm : ( ( messages : LLMMessage [] ,
grammar ?: string ) => Promise < string > ) ; isSlmCapable : ( ( ) => Promise < boolean > ) ; getStructuredTextPrediction < T > ( structure : ZodType < T , ZodTypeDef , T > ,
messages : LLMMessage [] ,
provider ?: string ,
params ?: ChatOpenAIParams ) : AsyncGenerator < T , any , unknown > ; } Type declaration get Embedding : ( ( text : string ) => Promise < number [] > ) ( text ) : Promise < number [] > Returns Promise < number [] > An embedding.
get Text Prediction : ( ( messages : LLMMessage [] , provider ?: string , params ?: ChatOpenAIParams ) => AsyncGenerator < string , any , unknown > ) get Text Prediction Slm : ( ( messages : LLMMessage [] , grammar ?: string ) => Promise < string > ) ( messages , grammar ? ) : Promise < string > Returns Promise < string > A text prediction.
is Slm Capable : ( ( ) => Promise < boolean > ) ( ) : Promise < boolean > Returns Promise < boolean >
Whether the user's device is capable of running a Small Language Model.
get Structured Text Prediction : functionget Structured Text Prediction < T > ( structure , messages , provider ? , params ? ) : AsyncGenerator < T , any , unknown > Returns AsyncGenerator < T , any , unknown > is Running In Highlight is Running In Highlight : ( ( ) => boolean )
once once : ( ( event : HighlightEvent ,
listener : ( ( ... args : any [] ) => void ) ) => void ) permissions permissions : { requestBackgroundPermission : ( ( ) => Promise < boolean > ) ; requestClipboardReadPermission : ( ( ) => Promise < boolean > ) ; requestScreenshotPermission : ( ( ) => Promise < boolean > ) ; requestWindowContextPermission : ( ( ) => Promise < boolean > ) ; }
Type declaration request Background Permission : ( ( ) => Promise < boolean > ) ( ) : Promise < boolean > Returns Promise < boolean > request Clipboard Read Permission : ( ( ) => Promise < boolean > ) ( ) : Promise < boolean > Returns Promise < boolean > request Screenshot Permission : ( ( ) => Promise < boolean > ) ( ) : Promise < boolean > Returns Promise < boolean > request Window Context Permission : ( ( ) => Promise < boolean > ) ( ) : Promise < boolean > Returns Promise < boolean > remove Event Listener remove Event Listener : ( ( event : HighlightEvent ,
listener : ( ( ... args : any [] ) => void ) ) => void ) reporting reporting : { trackEvent : ( ( eventName : string , eventProperties ?: object ) => Promise < void > ) ; }
runtime Flags runtime Flags : { flags : ( ( ) => string [] ) ; isEnabled : ( ( flag : string ) => boolean ) ; }
tasks tasks : { acceptTask : ( ( id : string ) => Promise < void > ) ; createTask : ( ( task : Partial < Omit < Task , "id" | "createdAt" > > ) => Promise < void > ) ; declineTask : ( ( id : string ) => Promise < void > ) ; deleteTask : ( ( id : string ) => Promise < void > ) ; getRecentTasks : ( ( numDays : number ) => Promise < Task [] > ) ; getTaskSettings : ( ( ) => Promise < TaskSettings > ) ; onTaskSettingsUpdated : ( ( callback : ( ( settings : TaskSettings ) => void ) ) => void ) ; setDueDate : ( ( id : string ,
date ?: string ,
time ?: string ,
reminderOffsetMinutes ?: number ) => Promise < void > ) ; setTaskSettings : ( ( settings : Partial < TaskSettings > ) => Promise < void > ) ; toggleTask : ( ( id : string ) => Promise < void > ) ; updateTaskDetails : ( ( id : string ,
updates : Partial < Omit < Task , "id" | "createdAt" > > ) => Promise < void > ) ; } user user : { addFact : ( ( fact : string ) => Promise < void > ) ; deleteFact : ( ( index : number ) => Promise < void > ) ; getAboutMeString : ( ( ) => Promise < string > ) ; getAppIcon : ( ( appName : string ) => Promise < null | string > ) ; getAudio : ( ( longAudio : boolean ) => Promise < string > ) ; getAudioForDuration : ( ( duration : number ) => Promise < string > ) ; getClipboardContents : ( ( ) => Promise < undefined | { type : "text" | "image" ; value : string ; } > ) ; getContext : ( ( paneDetectionEnabled ?: boolean ) => Promise < HighlightContext > ) ; getDisplayScreenshots : ( ( ) => Promise < { thumbnail : string ; } [] > ) ; getEmail : ( ( ) => Promise < string > ) ; getFacts : ( ( ) => Promise < string [] > ) ; getMicActivity : ( ( lastNumMs : number ) => Promise < number > ) ; getMicActivityInDecibels : ( ( lastNumMs : number ) => Promise < number > ) ; getNativeWindows : ( ( ) => Promise < { appName : string ; pid : number ; title : string ; } [] > ) ; getScreenshot : ( ( ) => Promise < string > ) ; getWindowContext : ( ( windowTitle : string ,
scope ?: WindowContextScope ) => Promise < HighlightContext > ) ; getWindowScreenshot : ( ( windowTitle : string ) => Promise < string > ) ; getWindowScreenshots : ( ( ) => Promise < { appIcon ?: null | string ; appName ?: string ; pid ?: number ; windowTitle : string ; } [] > ) ; getWindows : ( ( ) => Promise < { appIcon ?: string ; windowTitle : string ; } [] > ) ; setAsrRealtime : ( ( isActive : boolean ) => void ) ; updateFact : ( ( index : number ,
fact : string ) => Promise < void > ) ; } Type declaration add Fact : ( ( fact : string ) => Promise < void > ) ( fact ) : Promise < void > Returns Promise < void > delete Fact : ( ( index : number ) => Promise < void > ) ( index ) : Promise < void > Returns Promise < void > get About Me String : ( ( ) => Promise < string > ) ( ) : Promise < string > Returns Promise < string > get App Icon : ( ( appName : string ) => Promise < null | string > ) ( appName ) : Promise < null | string > Returns Promise < null | string >
String of the icon from cache
get Audio : ( ( longAudio : boolean ) => Promise < string > ) ( longAudio ) : Promise < string > Returns Promise < string >
get Audio For Duration : ( ( duration : number ) => Promise < string > ) ( duration ) : Promise < string > Returns Promise < string >
get Clipboard Contents : ( ( ) => Promise < undefined | { type : "text" | "image" ; value : string ; } > ) ( ) : Promise < undefined | { type : "text" | "image" ; value : string ; } > Returns Promise < undefined | { type : "text" | "image" ; value : string ; } >
The type and value of the contents of the clipboard
get Context : ( ( paneDetectionEnabled ?: boolean ) => Promise < HighlightContext > ) ( paneDetectionEnabled ? ) : Promise < HighlightContext > Parameters Optional
paneDetectionEnabled : boolean get Display Screenshots : ( ( ) => Promise < { thumbnail : string ; } [] > ) ( ) : Promise < { thumbnail : string ; } [] > Returns Promise < { thumbnail : string ; } [] >
An array of base64 encoded screenshots of the user's displays.
get Email : ( ( ) => Promise < string > ) ( ) : Promise < string > Returns Promise < string >
get Facts : ( ( ) => Promise < string [] > ) ( ) : Promise < string [] > Returns Promise < string [] > get Mic Activity : ( ( lastNumMs : number ) => Promise < number > ) ( lastNumMs ) : Promise < number > Returns Promise < number >
The microphone activity from 0-5.
get Mic Activity In Decibels : ( ( lastNumMs : number ) => Promise < number > ) ( lastNumMs ) : Promise < number > Returns Promise < number >
The microphone activity in decibels.
get Native Windows : ( ( ) => Promise < { appName : string ; pid : number ; title : string ; } [] > ) ( ) : Promise < { appName : string ; pid : number ; title : string ; } [] > Returns Promise < { appName : string ; pid : number ; title : string ; } [] >
An array of window titles, PIDs and app names
get Screenshot : ( ( ) => Promise < string > ) ( ) : Promise < string > Returns Promise < string > get Window Screenshot : ( ( windowTitle : string ) => Promise < string > ) ( windowTitle ) : Promise < string > Returns Promise < string >
Base64 encoded screenshot of the window.
get Window Screenshots : ( ( ) => Promise < { appIcon ?: null | string ; appName ?: string ; pid ?: number ; windowTitle : string ; } [] > ) ( ) : Promise < { appIcon ?: null | string ; appName ?: string ; pid ?: number ; windowTitle : string ; } [] > Returns Promise < { appIcon ?: null | string ; appName ?: string ; pid ?: number ; windowTitle : string ; } [] >
Base64 encoded screenshot of the window.
get Windows : ( ( ) => Promise < { appIcon ?: string ; windowTitle : string ; } [] > ) ( ) : Promise < { appIcon ?: string ; windowTitle : string ; } [] > Returns Promise < { appIcon ?: string ; windowTitle : string ; } [] >
An array of window titles and app icons.
set Asr Realtime : ( ( isActive : boolean ) => void ) ( isActive ) : void Returns void update Fact : ( ( index : number , fact : string ) => Promise < void > ) ( index , fact ) : Promise < void > Parameters index : number fact : string Returns Promise < void > vectorDB vectorDB : { createTable : ( ( tableName : string ,
additionalColumns : SchemaColumn [] ) => Promise < void > ) ; deleteItem : ( ( tableName : string ,
id : string ) => Promise < boolean > ) ; deleteTable : ( ( tableName : string ) => Promise < boolean > ) ; getAllItems : ( ( tableName : string ) => Promise < any [] > ) ; getItem : ( ( tableName : string ,
id : string ) => Promise < any > ) ; getItems : ( ( tableName : string ,
query : string ,
limit : number ) => Promise < any [] > ) ; insertItem : ( ( tableName : string ,
text : string ,
additionalData : Record < string , any > ) => Promise < any > ) ; updateItem : ( ( tableName : string ,
id : string ,
data : Record < string , any > ) => Promise < boolean > ) ; vectorSearch : ( ( tableName : string ,
text : string ,
maxResults : number ) => Promise < any [] > ) ; } Type declaration create Table : ( ( tableName : string , additionalColumns : SchemaColumn [] ) => Promise < void > ) ( tableName , additionalColumns ) : Promise < void > Returns Promise < void > delete Item : ( ( tableName : string , id : string ) => Promise < boolean > ) ( tableName , id ) : Promise < boolean > Parameters tableName : string id : string Returns Promise < boolean > delete Table : ( ( tableName : string ) => Promise < boolean > ) ( tableName ) : Promise < boolean > Returns Promise < boolean > get All Items : ( ( tableName : string ) => Promise < any [] > ) ( tableName ) : Promise < any [] > Returns Promise < any [] > get Item : ( ( tableName : string , id : string ) => Promise < any > ) ( tableName , id ) : Promise < any > Parameters tableName : string id : string Returns Promise < any > get Items : ( ( tableName : string , query : string , limit : number ) => Promise < any [] > ) ( tableName , query , limit ) : Promise < any [] > Parameters tableName : string query : string limit : number Returns Promise < any [] > insert Item : ( ( tableName : string , text : string , additionalData : Record < string , any > ) => Promise < any > ) ( tableName , text , additionalData ) : Promise < any > Parameters tableName : string text : string additionalData : Record < string , any > Returns Promise < any > update Item : ( ( tableName : string , id : string , data : Record < string , any > ) => Promise < boolean > ) ( tableName , id , data ) : Promise < boolean > Parameters tableName : string id : string data : Record < string , any > Returns Promise < boolean > vector Search : ( ( tableName : string , text : string , maxResults : number ) => Promise < any [] > ) ( tableName , text , maxResults ) : Promise < any [] > Parameters tableName : string text : string maxResults : number Returns Promise < any [] >
The entire exported Highlight API, available within your Highlight app.