Skip to main content
Version: v1

DriverPreCheckInfo Interface

Information that can be returned by a lightweight, seperately exported driver function. Used to preanalyze a URL for driver compatibility and preload information.

Signature

export interface DriverPreCheckInfo

Properties

Property Modifiers Type Description
codeDetailsHint optional string A code details hint that can potentially be used to prefetch container code prior to having a snapshot.
criticalBootDomains optional string[] Domains that will be connected to on the critical boot path. Hosts can choose to preconnect to these for improved performance.

Property Details

codeDetailsHint

A code details hint that can potentially be used to prefetch container code prior to having a snapshot.

Signature

codeDetailsHint?: string;

Type: string

criticalBootDomains

Domains that will be connected to on the critical boot path. Hosts can choose to preconnect to these for improved performance.

Signature

criticalBootDomains?: string[];

Type: string[]