17 lines
301 B
TypeScript
17 lines
301 B
TypeScript
/**
|
|
* @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',
|
|
}
|