/** * Test for sap domains and patching to trust SAPs root certificate * */ export declare class TlsPatch { private static _patched; /** * Test if the patch is already applied. * * @returns true if the patch is already applied */ static get isPatched(): boolean; /** * Test if the patch is required. * * @param url the url to test * @returns true if the patch is required */ static isPatchRequired(url: string): boolean; /** * Monkey patching the secure context to also support SAPs root CA. */ static apply(): void; } //# sourceMappingURL=patchTls.d.ts.map