Files
ghostty/macos/Sources/Ghostty/GhosttyDelegate.swift
Mitchell Hashimoto 7b743164ef macos: fix iOS builds
2025-12-29 06:55:01 -08:00

11 lines
320 B
Swift

import Foundation
extension Ghostty {
/// This is a delegate that should be applied to your global app delegate for GhosttyKit
/// to perform app-global operations.
protocol Delegate {
/// Look up a surface within the application by ID.
func ghosttySurface(id: UUID) -> SurfaceView?
}
}