@kephas/reflection
Version:
Provides reflection capabilities, like TypeInfoRegistry, ITypeInfo, and IProperty.
37 lines (36 loc) • 679 B
TypeScript
/**
* Provides display information.
*
* @export
* @class DisplayInfo
*/
export declare class DisplayInfo {
/**
* Gets the localized name.
*
* @type {string}
* @memberof DisplayInfo
*/
name?: string;
/**
* Gets the localized description.
*
* @type {string}
* @memberof DisplayInfo
*/
description?: string;
/**
* Gets the localized prompt.
*
* @type {string}
* @memberof DisplayInfo
*/
prompt?: string;
/**
* Gets the localized short name.
*
* @type {string}
* @memberof DisplayInfo
*/
shortName?: string;
}