export const BRIDGE_LIB = '__BRIDGE_LIB__'; export let react: any; export const register = (libs: { __dev__?: boolean; [key: string]: any }) => { if (libs.react) { react = libs.react; } (window as any)[BRIDGE_LIB] = { ...libs, }; };