2024-04-26 19:04:20 +02:00

17 lines
302 B
Ruby

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