ohctechv3/.svn/pristine/3b/3bb739574a83e1af2712917638d5663fe14dd101.svn-base
2024-10-28 15:03:36 +05:30

8 lines
329 B
Plaintext

import { BeanStub } from '../context/beanStub';
import { Column } from '../entities/column';
import { IRowNode } from '../interfaces/iRowNode';
export declare class ValueParserService extends BeanStub {
private expressionService;
parseValue(column: Column, rowNode: IRowNode | null, newValue: any, oldValue: any): any;
}