import {SimpleXdmDefinition} from './SimpleXdmDefinition'; /** * This interface encapsulates important information relating to the definition of a module. */ export interface ModuleDefinition { /** * The name that uniquely identifies the module. */ registrationName: string; /** * The structure that is registered with SimpleXDM. */ simpleXdmDefinition: SimpleXdmDefinition; }