@xcons/core
Version:
XCons Core System - Component Architecture Platform
18 lines (17 loc) • 551 B
TypeScript
/**
* @fileoverview Package Constants
* @description Build-time and runtime constants for XCon Widget Framework
* @author XCON Studio
*/
export declare const PACKAGE_NAME: string;
export declare const PACKAGE_DESC: string;
export declare const PACKAGE_AUTHOR: string;
export declare const PACKAGE_VERSION: string;
export declare const BUILD_TIME: string;
export declare const PACKAGE_INFO: {
readonly name: string;
readonly version: string;
readonly buildTime: string;
readonly description: string;
readonly author: string;
};