@ehfuse/forma
Version:
Advanced React state management library with individual field subscriptions - supports both forms and general state management with useFormaState
41 lines • 1.27 kB
TypeScript
/**
* environment.ts
*
* Environment detection utilities
* 환경 감지 유틸리티
*
* @author KIM YOUNG JIN (ehfuse@gmail.com)
* @license MIT License
*/
/**
* Check if the current environment is development
* 현재 환경이 개발 환경인지 확인
*
* @returns {boolean} true if development environment, false otherwise
*/
export declare function isDevelopment(): boolean;
/**
* Log a warning message only in development environment
* 개발 환경에서만 경고 메시지 로그
*
* @param message - Warning message to log
* @param ...args - Additional arguments to log
*/
export declare function devWarn(message: string, ...args: any[]): void;
/**
* Log an error message only in development environment
* 개발 환경에서만 에러 메시지 로그
*
* @param message - Error message to log
* @param ...args - Additional arguments to log
*/
export declare function devError(message: string, ...args: any[]): void;
/**
* Log an info message only in development environment
* 개발 환경에서만 정보 메시지 로그
*
* @param message - Info message to log
* @param ...args - Additional arguments to log
*/
export declare function devLog(message: string, ...args: any[]): void;
//# sourceMappingURL=environment.d.ts.map