(type: string, args: string[])
| 33 | } |
| 34 | |
| 35 | async get(type: string, args: string[]): Promise<any> { |
| 36 | return this.delegate.get(type, args); |
| 37 | } |
| 38 | |
| 39 | async evict(type: string, args: string[]): Promise<null> { |
| 40 | return this.delegate.evict(type, args); |