mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-09 20:01:18 +00:00
Ensure that no source files have trailing whitespace at end of lines and ensure that all files end with a single trailing newline. This also adds Github Actions to enforce whitespace conventions.
14 lines
199 B
TypeScript
14 lines
199 B
TypeScript
export interface PaperlessDocumentMetadata {
|
|
|
|
original_checksum?: string
|
|
|
|
archived_checksum?: string
|
|
|
|
original_mime_type?: string
|
|
|
|
media_filename?: string
|
|
|
|
has_archive_version?: boolean
|
|
|
|
}
|