ohctechv3/.svn/pristine/f0/f053ec9caa40fadd0814af7a4e196cdf528a9172.svn-base

8 lines
400 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
import { Column } from '../entities/column';
import { BeanStub } from "../context/beanStub";
import { IRowNode } from '../interfaces/iRowNode';
export declare class ValueFormatterService extends BeanStub {
private expressionService;
formatValue(column: Column, node: IRowNode | null, value: any, suppliedFormatter?: (value: any) => string, useFormatterFromColumn?: boolean): string | null;
}