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