UNPKG

imessage-ts

Version:

TypeScript library for interacting with iMessage on macOS - send messages, monitor chats, and automate responses

15 lines 411 B
import { SendMessageOptions } from '../types'; /** * Service to send messages via iMessage using AppleScript */ export declare class MessageSender { /** * Send a message to a recipient or group */ sendMessage(options: SendMessageOptions): Promise<void>; /** * Check if iMessage is available */ isAvailable(): Promise<boolean>; } //# sourceMappingURL=message-sender.d.ts.map