feat: add processing.rbs as a type definition file for processing.rb

As a first step toward adopting rbs for this project, added type a definition for a simple method.
More type definitions will be added incrementally.
This commit is contained in:
ericgpks 2025-04-28 22:31:43 +09:00
parent 674daa84eb
commit 448c1e9079

View File

@ -0,0 +1,7 @@
module YouPlot
module Backends
module Processing
def count_values: ([], ?tally: true, ?reverse: false) -> Array[Array[untyped]]
end
end
end