browsertrix/frontend/src/replayWebPage.d.ts
Henry Wilkinson 06b512bb84
Auto-load seed url when replaying seeded crawls (#1786)
Closes #1787

- Crawls with only one seed will load viewing that seed URL
- URL list crawls with >1 URLs will continue to load the pages list as no
ReplayWeb.page enbed URL has been defined

Co-authored-by: sua yoo <sua@webrecorder.org>
2024-05-07 14:03:14 -04:00

17 lines
307 B
TypeScript

/**
* @attr {String} source
* @attr {String} coll
* @attr {String} config
* @attr {String} replayBase
* @attr {String} noSandbox
* @attr {String} noCache
* @attr {String} url
*/
class ReplayWebPage {}
declare global {
interface HTMLElementTagNameMap {
"replay-web-page": ReplayWebPage;
}
}