mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
20 lines
439 B
TypeScript
20 lines
439 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
import { SearchHitHighlight } from 'src/app/data/search-result';
|
|
|
|
@Component({
|
|
selector: 'app-result-hightlight',
|
|
templateUrl: './result-hightlight.component.html',
|
|
styleUrls: ['./result-hightlight.component.css']
|
|
})
|
|
export class ResultHightlightComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
@Input()
|
|
highlights: SearchHitHighlight[][]
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|