Member Junction
    Preparing search index...

    Variable KNOWN_REMOTE_BROWSER_FEATURE_KEYSConst

    KNOWN_REMOTE_BROWSER_FEATURE_KEYS: ReadonlyArray<
        keyof IRemoteBrowserProviderFeatures,
    > = ...

    The complete set of IRemoteBrowserProviderFeatures keys, as a readonly tuple.

    Useful for validators, diffing a driver's declared overrides against its provider metadata, and any code that must iterate over every known capability flag. Typed as ReadonlyArray<keyof IRemoteBrowserProviderFeatures> so the list stays in lock-step with the interface — adding a flag to the interface surfaces a compile error here until the key is added.