forked from nm3clol/nm3clol-express-app
26 lines
522 B
TypeScript
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;
|
|
}
|