You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/typings/History.ts

22 lines
371 B

import ModelBase from 'App/ModelBase';
export interface HistoryData {
source: string;
host: string;
limit: number;
offset: number;
elapsedTime: number;
query: string;
queryType: string;
}
interface History extends ModelBase {
indexerId: number;
date: string;
successful: boolean;
eventType: string;
data: HistoryData;
}
export default History;