Spaces:
Running
Running
File size: 352 Bytes
95f4e64 |
1 2 3 4 5 6 7 8 9 |
import { JackettSearchOptions } from './types/JackettSearchOptions';
import { JackettSearchResult } from './types/JackettSearchResult';
export declare class JackettApi {
private readonly baseUrl;
private readonly apiKey;
constructor(baseUrl: string, apiKey: string);
search(query: JackettSearchOptions): Promise<JackettSearchResult>;
}
|