blob: dd518c70512838d6e55cfb2124b16f0cada0afeb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export interface CustomFeed {
identifier: string
name: string
query: string
matchMode: "and" | "or"
sourceFolderIdentifier: string | null
position: number
iconUrl: string | null
}
|