Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sig/datadog/appsec/response.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module Datadog


def initialize: (status: ::Integer, ?headers: ::Hash[::String, ::String], ?body: ::Array[::String]) -> void
def to_rack: () -> ::Array[untyped]
def to_rack: () -> [::Integer, ::Hash[::String, ::String], ::Array[::String]]

def self.from_interrupt_params: (::Hash[::String, ::String] interrupt_params, ::String http_accept_header) -> Response

Expand Down
2 changes: 1 addition & 1 deletion sig/datadog/appsec/utils/hash_coercion.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Datadog
module AppSec
module Utils
module HashCoercion
def self.coerce: (untyped) -> ::Hash[untyped, untyped]?
def self.coerce: (any) -> ::Hash[any, any]?
end
end
end
Expand Down
4 changes: 2 additions & 2 deletions sig/datadog/core/utils/forking.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ module Datadog
module Forking
@fork_pid: Integer

def self.included: (untyped base) -> untyped
def self.included: (::Module base) -> void

def self.extended: (untyped base) -> untyped
def self.extended: (::Module base) -> void

def after_fork!: () { () -> untyped } -> bool

Expand Down
Loading