UNPKG

@optimizely/optimizely-sdk

Version:

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

26 lines (25 loc) 1.23 kB
/** * Copyright 2023-2025 Optimizely * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { Platform } from './platform_support'; export { createStaticProjectConfigManager } from './project_config/config_manager_factory'; export { LogLevel } from './logging/logger'; export { DEBUG, INFO, WARN, ERROR, } from './logging/logger_factory'; export { createLogger } from './logging/logger_factory'; export { createErrorNotifier } from './error/error_notifier_factory'; export { DECISION_SOURCES, } from './utils/enums'; export { NOTIFICATION_TYPES, DECISION_NOTIFICATION_TYPES } from './notification_center/type'; export { OptimizelyDecideOption } from './shared_types'; export declare const __platforms: Platform[];