mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-10 08:37:19 +01:00
19 lines
No EOL
243 B
TypeScript
19 lines
No EOL
243 B
TypeScript
import { FilterRule } from './filter-rule';
|
|
|
|
export interface SavedViewConfig {
|
|
|
|
id?: string
|
|
|
|
filterRules: FilterRule[]
|
|
|
|
sortField: string
|
|
|
|
sortDirection: string
|
|
|
|
title: string
|
|
|
|
showInSideBar: boolean
|
|
|
|
showInDashboard: boolean
|
|
|
|
} |