Skip to content

ENUM

PluginLocation.LocationType ​

Contents

  • Cases
    • local(path:)
    • gitWithTag(url:tag:directory:releaseUrl:)
    • gitWithSha(url:sha:directory:)
swift
public enum LocationType: Codable, Equatable, Sendable

Cases ​

local(path:) ​

swift
case local(path: Path)

gitWithTag(url:tag:directory:releaseUrl:) ​

swift
case gitWithTag(url: String, tag: String, directory: String?, releaseUrl: String?)

gitWithSha(url:sha:directory:) ​

swift
case gitWithSha(url: String, sha: String, directory: String?)

Released under the MIT License.