Prettier code cleanup for .ts files

See #182
This commit is contained in:
Michael Shamoon 2022-03-11 10:53:32 -08:00
parent f8c8161a3e
commit f34202a82a
159 changed files with 3882 additions and 2716 deletions

View file

@ -5,50 +5,46 @@ import { PaperlessDocumentType } from './paperless-document-type'
import { Observable } from 'rxjs'
export interface SearchHit {
score?: number
rank?: number
highlights?: string
}
export interface PaperlessDocument extends ObjectWithId {
correspondent$?: Observable<PaperlessCorrespondent>
correspondent$?: Observable<PaperlessCorrespondent>
correspondent?: number
correspondent?: number
document_type$?: Observable<PaperlessDocumentType>
document_type$?: Observable<PaperlessDocumentType>
document_type?: number
document_type?: number
title?: string
title?: string
content?: string
content?: string
file_type?: string
file_type?: string
tags$?: Observable<PaperlessTag[]>
tags$?: Observable<PaperlessTag[]>
tags?: number[]
tags?: number[]
checksum?: string
checksum?: string
created?: Date
created?: Date
modified?: Date
modified?: Date
added?: Date
added?: Date
file_name?: string
file_name?: string
download_url?: string
download_url?: string
thumbnail_url?: string
thumbnail_url?: string
archive_serial_number?: number
__search_hit__?: SearchHit
archive_serial_number?: number
__search_hit__?: SearchHit
}