brew/Library/Homebrew/cask/dsl/uninstall_preflight.rb
2024-04-26 19:04:20 +02:00

14 lines
232 B
Ruby

# typed: strict
# frozen_string_literal: true
require "cask/staged"
module Cask
class DSL
# Class corresponding to the `uninstall_preflight` stanza.
class UninstallPreflight < Base
include Staged
end
end
end