diff --git a/lib/pycall-setup.rbi b/lib/pycall-setup.rbi new file mode 100644 index 0000000..3d46e87 --- /dev/null +++ b/lib/pycall-setup.rbi @@ -0,0 +1,15 @@ +# typed: true + +module InfluxDBClient3; end + +module PyCall + def self.init(*args); end + + module Import + def self.pyfrom(*args); end + + def self.import(*args); end + end + + class PyError; end # rubocop:disable Lint/EmptyClass +end