@adaptabletools/adaptable-plugin-interopio 22.0.3 → 22.0.5-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +2 -2
- package/src/types.d.ts +1 -0
- package/src/types.js +1 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AdaptablePlugin } from '@adaptabletools/adaptable/types';
|
|
2
2
|
import { IAdaptable } from '@adaptabletools/adaptable/src/AdaptableInterfaces/IAdaptable';
|
|
3
3
|
import { InteropioPluginApiImpl } from './InteropioPluginApiImpl';
|
|
4
|
-
import { InteropioPluginOptions } from '
|
|
4
|
+
import { InteropioPluginOptions } from './types';
|
|
5
5
|
import * as Interop from '@interopio/browser';
|
|
6
6
|
import * as InteropDesktop from '@interopio/desktop';
|
|
7
7
|
type InteropAPI = Interop.IOConnectBrowser.API | InteropDesktop.IOConnectDesktop.API;
|
|
@@ -26,6 +26,6 @@ declare class InteropioPlugin extends AdaptablePlugin {
|
|
|
26
26
|
*/
|
|
27
27
|
private integrateAdaptableAlerts;
|
|
28
28
|
}
|
|
29
|
-
export type { InteropioPluginOptions };
|
|
29
|
+
export type { InteropioPluginOptions } from './types';
|
|
30
30
|
export declare const interopioPlugin: (options: InteropioPluginOptions, interopioApi: InteropAPI) => InteropioPlugin;
|
|
31
31
|
export default interopioPlugin;
|
package/src/types.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InteropioPluginOptions } from '@adaptabletools/adaptable/src/AdaptableOptions/InteropioPluginOptions';
|
package/src/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|