mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-07 11:49:48 -05:00
19 lines
246 B
TypeScript
19 lines
246 B
TypeScript
import { FilterRule } from './filter-rule';
|
|
|
|
export interface SavedViewConfig {
|
|
|
|
id?: string
|
|
|
|
filterRules: FilterRule[]
|
|
|
|
sortField: string
|
|
|
|
sortDirection: string
|
|
|
|
title?: string
|
|
|
|
showInSideBar?: boolean
|
|
|
|
showInDashboard?: boolean
|
|
|
|
} |