ados-rcm 1.0.602 → 1.0.603

Sign up to get free protection for your applications and to get access to all the features.
@@ -100,6 +100,7 @@ interface IInitParams {
100
100
  declare function init({ semanticMode, save, followDeviceSetting }: IInitParams): void;
101
101
  type TAThemeEvent = IPaletteModeChangeEvent | ISemanticModeChangeEvent;
102
102
  declare function addEventListener<T extends TAThemeEvent>(param: T): void;
103
+ declare function removeEventListener<T extends TAThemeEvent>(param: T): void;
103
104
  export declare const AThemes: {
104
105
  getCurrentPaletteMode: typeof getCurrentPaletteMode;
105
106
  changePaletteMode: typeof changePaletteMode;
@@ -111,5 +112,6 @@ export declare const AThemes: {
111
112
  editComponentStyleWithSemantic: typeof editComponentStyleWithSemantic;
112
113
  init: typeof init;
113
114
  addEventListener: typeof addEventListener;
115
+ removeEventListener: typeof removeEventListener;
114
116
  };
115
117
  export {};