2020-11-25 17:04:19 +01:00

21 lines
348 B
Ruby

# typed: strict
# frozen_string_literal: true
require "cask/artifact/moved"
module Cask
module Artifact
# Artifact corresponding to the `prefpane` stanza.
#
# @api private
class Prefpane < Moved
extend T::Sig
sig { returns(String) }
def self.english_name
"Preference Pane"
end
end
end
end