@robotlegsjs/core
Version:
An architecture-based IoC framework for JavaScript/TypeScript
8 lines (7 loc) • 326 B
TypeScript
/**
* Returns the fully qualified class name of an object. Support EcmaScript from v3 upto v6.
*
* @param {any} value The object for which a fully qualified class name is desired.
* @return {string} A string containing the fully qualified class name.
*/
export declare function getQualifiedClassName(value: any): string;