Interface RunningApplication

A running macOS application of which windows or audio can be recorded.

interface RunningApplication {
    id: number;
    name?: string;
    bundle_identifier?: string;
    availability: "available" | "notRunning";
}

Properties

id: number

Identifier for this application (process id).

name?: string

Display name of the application.

bundle_identifier?: string

Bundle identifier of the application (e.g., "com.apple.Safari").

availability: "available" | "notRunning"

The current availability state of this application.

  • available: Application can be recorded
  • notRunning: Application cannot be recorded because it is not (or no longer) running

Generated using TypeDoc