fix(core): update

This commit is contained in:
2023-04-17 14:54:26 +02:00
parent 5afbf16906
commit 9d8985d67a
3 changed files with 17 additions and 1 deletions

14
ts/data/linksnapshot.ts Normal file
View File

@ -0,0 +1,14 @@
import * as plugins from '../ul-interfaces.plugins.js';
export interface ILinkSnapshot {
httpsSupport: boolean;
httpHttpsParity: boolean;
httpToHttpsRedirect: boolean;
wwwToRootRedirect: boolean;
rootToWwwRedirect: boolean;
statusCode: number;
fullPageLoadSize: number;
fullPageLoadTimeMs: number;
cookies: any[];
gdprCompliance: boolean;
}