Interface Library

interface Library {
    config: {
        name: string;
        targetVer: string;
        type: "library";
    };
    data: any;
    init: ((library, kernel, process) => void);
}

Hierarchy (view full)

Properties

Properties

config: {
    name: string;
    targetVer: string;
    type: "library";
}

Type declaration

  • name: string
  • targetVer: string
  • type: "library"
data: any
init: ((library, kernel, process) => void)

Type declaration

Generated using TypeDoc