Interface ModuleParameterObject

interface ModuleParameterObject {
    id: string;
    path: string;
    requireFunc: (path: string, currentModule?: Module) => any;
    resolveFunc: (path: string, currentModule?: Module) => string;
    runtimeValueBase: ScriptAssetRuntimeValueBase;
    virtualPath?: string;
}

Properties

id: string
path: string
requireFunc: (path: string, currentModule?: Module) => any
resolveFunc: (path: string, currentModule?: Module) => string
runtimeValueBase: ScriptAssetRuntimeValueBase
virtualPath?: string