mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-10 16:46:50 +01:00
20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
|
|
import { Component, Input, OnInit } from '@angular/core';
|
||
|
|
import { SearchResultHighlightedText } from 'src/app/services/rest/search.service';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-result-hightlight',
|
||
|
|
templateUrl: './result-hightlight.component.html',
|
||
|
|
styleUrls: ['./result-hightlight.component.css']
|
||
|
|
})
|
||
|
|
export class ResultHightlightComponent implements OnInit {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
@Input()
|
||
|
|
highlights: SearchResultHighlightedText[][]
|
||
|
|
|
||
|
|
ngOnInit(): void {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|