Sha256: 7f5d06d3601b61ed85f383eae46aae854459664be651d0de4cfd932c4ee9011e

Contents?: true

Size: 473 Bytes

Versions: 1

Compression:

Stored size: 473 Bytes

Contents

# typed: true
module Gush
  class Workflow
    include UpGush::WorkflowPatch

    sig { params(id: String).returns(Gush::Workflow) }
    def self.find(id);end

    sig { returns(T::Boolean) }
    def started?; end

    sig { returns(T::Boolean) }
    def running?; end

    sig { returns(T::Boolean) }
    def stopped?; end

    sig { returns(T::Boolean) }
    def failed?; end

    sig { params(e: Exception).void }
    def mark_as_finished_with_errors!(e); end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
up_gush-3.0.0.1 sorbet/rbi/shims/workflow.rbi