# typed: strict # frozen_string_literal: true require "cask/artifact/abstract_flight_block" module Cask module Artifact # Artifact corresponding to the `postflight` stanza. # # @api private class PostflightBlock < AbstractFlightBlock end end end