mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
367 B
Ruby
20 lines
367 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
class MacOSRunnerSpec < T::Struct
|
|
const :name, String
|
|
const :runner, String
|
|
const :timeout, Integer
|
|
const :cleanup, T::Boolean
|
|
|
|
sig { returns({ name: String, runner: String, timeout: Integer, cleanup: T::Boolean }) }
|
|
def to_h
|
|
{
|
|
name:,
|
|
runner:,
|
|
timeout:,
|
|
cleanup:,
|
|
}
|
|
end
|
|
end
|