Gimp.Module

const Gimp = imports.gi.Gimp;

let module = new Gimp.Module({
});
  

Gimp.Module is a generic mechanism to dynamically load modules into GIMP. It is a GObject.TypeModule subclass, implementing module loading using GModule.Module. Gimp.Module does not know which functionality is implemented by the modules, it just provides a framework to get arbitrary GLib.Type implementations loaded from disk.

Hierarchy

  • GObject.Object
    • GObject.TypeModule
      • Gimp.Module