9 lines
158 B
Ruby
9 lines
158 B
Ruby
# typed: strict
|
|
|
|
module GitRepositoryExtension
|
|
include Kernel
|
|
|
|
sig { params(args: T.any(String, Pathname)).returns(Pathname) }
|
|
def join(*args); end
|
|
end
|