File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/optimizely-sdk/lib/core/notification_center Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
declare module '@optimizely/optimizely-sdk/lib/core/notification_center' {
19
- import { UserAttributes , Experiment , Variation } from '@optimizely/optimizely-sdk' ;
20
19
import { LogHandler , ErrorHandler } from '@optimizely/js-sdk-logging' ;
21
20
22
21
export enum NOTIFICATION_TYPES {
@@ -65,10 +64,10 @@ declare module '@optimizely/optimizely-sdk/lib/core/notification_center' {
65
64
export interface NotificationData {
66
65
type ?: DECISION_NOTIFICATION_TYPES ;
67
66
userId ?: string ;
68
- attributes ?: UserAttributes ;
67
+ attributes ?: import ( '../../shared_types' ) . UserAttributes ;
69
68
decisionInfo ?: DecisionInfo ;
70
- experiment ?: Experiment ;
71
- variation ?: Variation ;
69
+ experiment ?: import ( '../../shared_types' ) . Experiment ;
70
+ variation ?: import ( '../../shared_types' ) . Variation ;
72
71
logEvent ?: string ;
73
72
eventKey ?: string ;
74
73
eventTags ?: string ;
You can’t perform that action at this time.
0 commit comments