// LensStudio:SysInfo provides system-level information about Lens Studio. constSysInfo = awaitimport('LensStudio:SysInfo');
// productType is the only exported property -- a string identifying // the product variant (e.g., "LensStudio"). console.log('Product type:', SysInfo.productType); console.log('Module keys:', Object.keys(SysInfo));
Provides system information for Lens Studio.
Example