mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 07:45:32 +01:00
19 lines
436 B
TypeScript
19 lines
436 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
import { SearchHitHighlight } from 'src/app/data/search-result';
|
|
|
|
@Component({
|
|
selector: 'app-result-highlight',
|
|
templateUrl: './result-highlight.component.html',
|
|
styleUrls: ['./result-highlight.component.scss']
|
|
})
|
|
export class ResultHighlightComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
@Input()
|
|
highlights: SearchHitHighlight[][]
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|