UNPKG

@optimizely/optimizely-sdk

Version:

JavaScript SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts

16 lines (15 loc) 529 B
/** * ⚠️ WARNING: DO NOT MOVE, DELETE, OR RENAME THIS FILE * * This file is used by the build system and validation scripts: * - scripts/validate-platform-isolation-ts.js * - scripts/platform-utils.js * - eslint-local-rules/require-platform-declaration.js * * These tools parse this file at build time to extract the Platform type definition. * Moving or renaming this file will break the build. */ /** * Valid platform identifiers */ export type Platform = 'browser' | 'node' | 'react_native' | '__universal__';