(label: string, property: string)
| 292 | } |
| 293 | |
| 294 | public getFullTextIndex(label: string, property: string): FullTextIndex | undefined { |
| 295 | const index = this.getIndex(label, property); |
| 296 | return index instanceof FullTextIndex ? index : undefined; |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * Create an index instance based on configuration. |
no test coverage detected