/** * @enum DelegateType - The type of delegate */ export enum DelegateType { /** * @constant External - The delegate is external. * @type {string} */ External = 'External', /** * @constant Internal - The delegate is internal. * @type {string} */ Internal = 'Internal', }