Interface PluginInfo

interface PluginInfo {
    error: string;
    id: number;
    result: {
        Author: string;
        Author-email: string;
        Description: string;
        Home-page: string;
        License: string;
        Name: string;
        Platform: string;
        Summary: string;
        Version: string;
    };
}

Hierarchy (view full)

Properties

Properties

error: string
id: number

mostly usless id that increments with every request

result: {
    Author: string;
    Author-email: string;
    Description: string;
    Home-page: string;
    License: string;
    Name: string;
    Platform: string;
    Summary: string;
    Version: string;
}

Type declaration

  • Author: string
  • Author-email: string
  • Description: string
  • Home-page: string
  • License: string
  • Name: string
  • Platform: string
  • Summary: string
  • Version: string