import { DBEntity } from "./db-entity"; import DBFile from "./db-file"; import DBDownload from "./db-download"; export default class DBUrl extends DBEntity { id: number; address: string; handler: string; processed: boolean; failed: boolean; failureReason: string | null; completedUTC: number; file: Promise; downloads: Promise; /** * Find or build a DBUrl object for the given URL string. */ static dedupeURL(address: string): Promise; }