@kephas/core
Version:
Provides a common infrastructure for all the other Kephas Framework components: ambient services, dynamic reflection, composition, application management, and others.
16 lines (15 loc) • 464 B
TypeScript
import { Type } from "./type";
/**
* Class decorator for annotating the namespace of a class.
*
* @export
* @param {Function} ctor The decorated class.
*/
export declare function Namespace(namespace: string): (type: Type<any>) => void;
/**
* Class decorator for annotating the full name of a class.
*
* @export
* @param {Function} ctor The decorated class.
*/
export declare function FullName(fullName: string): (type: Type<any>) => void;