2023-05-15 17:40:59 +09:00
|
|
|
import { IconEyeglass } from '@tabler/icons-react';
|
2023-07-21 18:08:40 +09:00
|
|
|
|
2022-07-24 23:18:01 +02:00
|
|
|
import { IModule } from '../ModuleTypes';
|
2023-07-21 18:08:40 +09:00
|
|
|
import { OverseerrMediaDisplay } from '../common';
|
2022-07-24 23:18:01 +02:00
|
|
|
|
|
|
|
|
export const OverseerrModule: IModule = {
|
2022-08-24 20:13:53 +02:00
|
|
|
title: 'Overseerr',
|
2022-07-24 23:18:01 +02:00
|
|
|
icon: IconEyeglass,
|
|
|
|
|
component: OverseerrMediaDisplay,
|
2022-08-25 11:07:25 +02:00
|
|
|
id: 'overseerr',
|
2022-07-24 23:18:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export interface OverseerSearchProps {
|
|
|
|
|
query: string;
|
|
|
|
|
}
|