2024-08-13 13:09:43 -06:00
|
|
|
# typed: strict
|
2023-01-26 21:41:45 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Keg
|
2024-08-13 13:09:43 -06:00
|
|
|
sig { returns(T::Array[Pathname]) }
|
2023-01-26 21:41:45 +09:00
|
|
|
def binary_executable_or_library_files
|
|
|
|
elf_files
|
|
|
|
end
|
|
|
|
end
|