Interface Module

This interface represents a module, including its name, version, and optional URL and license.

interface Module {
    name: string;
    version: string;
    url?: string;
    license?: string;
}

Properties

name: string

The name of the module

version: string

The version of the module

url?: string

An optional URL for the module

license?: string

An optional license for the module