import { SimpleXdmDefinition } from './SimpleXdmDefinition'; /** * This interface provides an abstraction for standardizing the building of modules that * can be registered with Simple XDM. */ export interface SimpleXdmDefinitionBuilder { /** * Build the structure that is to be registered with Simple XDM for this module. * @returns {SimpleXdmDefinition} */ buildSimpleXdmDefinition(): SimpleXdmDefinition; }