brew/Library/Homebrew/cask/dsl/postflight.rb
Issy Long 509fffab2b
Make more files Sorbet typed: strict
- According to Spoom, these could be bumped automatically with no errors.
2024-06-02 15:15:24 +01:00

14 lines
215 B
Ruby

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