@airplanegobrr/jackett-api
Version:
An api for 'Jackett' server requests
23 lines (22 loc) • 671 B
TypeScript
export declare enum IndexerType {
private = 0,
public = 1
}
export declare class TorznabIndexerModel {
private _id;
private _configured;
private _title;
private _description;
private _link;
private _language;
private _type;
constructor(_id: string, _configured: boolean, _title: string, _description: string, _link: string, _language: string, _type: IndexerType);
get id(): string;
get configured(): boolean;
get title(): string;
get description(): string;
get link(): string;
get language(): string;
get type(): IndexerType;
static fromJson(data: any): TorznabIndexerModel;
}