2022-07-24 23:18:01 +02:00
|
|
|
import { IconEyeglass } from '@tabler/icons';
|
2022-08-08 13:44:58 +02:00
|
|
|
import { OverseerrMediaDisplay } from '../common';
|
2022-07-24 23:18:01 +02:00
|
|
|
import { IModule } from '../ModuleTypes';
|
|
|
|
|
|
|
|
|
|
export const OverseerrModule: IModule = {
|
2022-08-24 19:51:54 +02:00
|
|
|
title: 'descriptor.name',
|
|
|
|
|
description: 'descriptor.description',
|
2022-07-24 23:18:01 +02:00
|
|
|
icon: IconEyeglass,
|
|
|
|
|
component: OverseerrMediaDisplay,
|
2022-08-24 19:51:54 +02:00
|
|
|
translationNamespace: 'modules/overseerr-module',
|
2022-07-24 23:18:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export interface OverseerSearchProps {
|
|
|
|
|
query: string;
|
|
|
|
|
}
|