(key: string)
| 40 | |
| 41 | export interface IContextKeyExprMapper { |
| 42 | mapDefined(key: string): ContextKeyExpression; |
| 43 | mapNot(key: string): ContextKeyExpression; |
| 44 | mapEquals(key: string, value: any): ContextKeyExpression; |
| 45 | mapNotEquals(key: string, value: any): ContextKeyExpression; |