unstructured-client
Version:
<h3 align="center"> <img src="https://raw.githubusercontent.com/Unstructured-IO/unstructured/main/img/unstructured_logo.png" height="200" > </h3>
15 lines • 631 B
TypeScript
import { SDKInitHook, SDKInitOptions } from "../types.js";
/**
* Represents a hook that performs base host HTTPS check during SDK initialization.
*/
export declare class HttpsCheckHook implements SDKInitHook {
/**
* Performs the base host HTTPS check during SDK initialization. If hostname
* matches "*.unstructuredapp.io" and the protocol is not "https:", the protocol
* is updated to "https:".
* @param opts - The SDK initialization options.
* @returns The updated SDK initialization options.
*/
sdkInit(opts: SDKInitOptions): SDKInitOptions;
}
//# sourceMappingURL=HttpsCheckHook.d.ts.map