ghostty/macos/Sources/Ghostty/Ghostty.Action.swift
2024-10-25 11:54:07 -07:00

16 lines
234 B
Swift

import GhosttyKit
extension Ghostty {
struct Action {}
}
extension Ghostty.Action {
struct MoveTab {
let amount: Int
init(c: ghostty_action_move_tab_s) {
self.amount = c.amount
}
}
}