xenforo-dl
Version:
XenForo Forum Downloader
13 lines • 397 B
TypeScript
import { DownloadTargetType } from '../XenForoDownloader.js';
export default class URLHelper {
static getTargetTypeByURL(url: string): DownloadTargetType;
static parseForumURL(url?: string): {
slug: string;
id: number;
} | null;
static parseThreadURL(url?: string): {
slug: string;
id: number;
} | null;
}
//# sourceMappingURL=URLHelper.d.ts.map