@@ -2,12 +2,12 @@ import { Expression } from "./types";
2
2
export declare class ExpressionUtils {
3
3
private _defaultSeparator ;
4
4
constructor ( _defaultSeparator ?: string ) ;
5
- getValueByExpression < T > ( instance : any , expression : Expression < T > ) : any ;
6
- getValueByProperties ( instance : any , properties : string [ ] ) : any ;
7
- getValue ( instance : any , property : string ) : any ;
8
- getColumnByExpression < T > ( expression : Expression < T > , separator ?: string ) : string ;
9
- getColumnByProperties ( properties : string [ ] , separator ?: string ) : string ;
10
- getPropertiesByExpression < T > ( expression : Expression < T > ) : string [ ] ;
5
+ public getValueByExpression < T > ( instance : any , expression : Expression < T > ) : any ;
6
+ public getValueByProperties ( instance : any , properties : string [ ] ) : any ;
7
+ public getValue ( instance : any , property : string ) : any ;
8
+ public getColumnByExpression < T > ( expression : Expression < T > , separator ?: string ) : string ;
9
+ public getColumnByProperties ( properties : string [ ] , separator ?: string ) : string ;
10
+ public getPropertiesByExpression < T > ( expression : Expression < T > ) : string [ ] ;
11
11
private getPropertiesByExpressionString ( expression ) ;
12
12
private getColumnByLambdaExpression < T > ( expression ) ;
13
13
private getPropertiesByLambdaExpression < T > ( expression ) ;
0 commit comments