mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-26 22:56:23 -04:00
68c326ae27
Closes #5201
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
export type ListSyncLevel =
|
|
| 'disabled'
|
|
| 'logOnly'
|
|
| 'keepAndUnmonitor'
|
|
| 'keepAndTag';
|
|
|
|
export default interface ImportListOptionsSettings {
|
|
listSyncLevel: ListSyncLevel;
|
|
listSyncTag: number;
|
|
}
|