import type { Cloneable } from './Cloneable.js'; import type { InitI18nResources } from './index.js'; import type { LynxTemplate } from './LynxModule.js'; import type { NapiModulesMap } from './NapiModules.js'; import type { NativeModulesMap } from './NativeModules.js'; import type { BrowserConfig } from './PageConfig.js'; export interface StartMainThreadContextConfig { template: LynxTemplate; initData: Cloneable; globalProps: Cloneable; browserConfig: BrowserConfig; nativeModulesMap: NativeModulesMap; napiModulesMap: NapiModulesMap; tagMap: Record; initI18nResources: InitI18nResources; }