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>
17 lines
307 B
TypeScript
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;
|
|
}
|
|
}
|