nm3clol-express-app/app/search/solr-doc.mts

26 lines
522 B
TypeScript

/**
* Needed until the conversion is completed.
*/
export interface IncorrectStyleSolrDocument {
id: string;
sha256sum: string[];
url: string[];
content_length: number[];
content_type: string[];
text: string[];
_version_?: number;
}
/**
* Describes Solr full-text search properties for a document file in the public repository.
*/
export interface SolrDocument {
id: string;
sha256sum: string;
url: string;
content_length: number;
content_type: string;
text: string;
_version_?: number;
}