- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
/**
|
|
* Formula parser
|
|
*/
|
|
export class Parser<T extends (string | number)> {
|
|
|
|
/**
|
|
* Create a new formula parser.
|
|
*
|
|
* @param formula - the formula string to parse.
|
|
* @param options - optional settings.
|
|
*/
|
|
constructor(formula: string, options?: Options);
|
|
|
|
/**
|
|
* Evaluate the formula.
|
|
*
|
|
* @param context - optional object with runtime formula context used to resolve variables.
|
|
*
|
|
* @returns the string or number outcome of the resolved formula.
|
|
*/
|
|
evaluate(context?: any): T;
|
|
}
|
|
|
|
|
|
export interface Options {
|
|
|
|
/**
|
|
* A hash of key - value pairs used to convert constants to values.
|
|
*/
|
|
readonly constants?: Record<string, any>;
|
|
|
|
/**
|
|
* A regular expression used to validate token variables.
|
|
*/
|
|
readonly tokenRx?: RegExp;
|
|
|
|
/**
|
|
* A variable resolver factory function.
|
|
*/
|
|
readonly reference?: Options.Reference;
|
|
|
|
/**
|
|
* A hash of key-value pairs used to resolve formula functions.
|
|
*/
|
|
readonly functions?: Record<string, Function>;
|
|
}
|
|
|
|
|
|
export namespace Options {
|
|
|
|
type Reference = (name: string) => (context: any) => any;
|
|
}
|