@rws-framework/client 2.21.0 → 2.21.1
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/client.ts +1 -2
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -15,7 +15,6 @@ import RWSWindow, { RWSWindowComponentRegister, loadRWSRichWindow } from './type
|
|
|
15
15
|
|
|
16
16
|
import { DI, Container, Registration } from './components/_container';
|
|
17
17
|
|
|
18
|
-
import { declareRWSComponents } from './components/index';
|
|
19
18
|
import RWSContainer from './components/_container';
|
|
20
19
|
import TheRWSService from './services/_service';
|
|
21
20
|
|
|
@@ -206,4 +205,4 @@ class RWSClient {
|
|
|
206
205
|
}
|
|
207
206
|
|
|
208
207
|
export default DI.createInterface<RWSClient>(x => x.singleton(RWSClient));
|
|
209
|
-
export { RWSClient as RWSClientInstance
|
|
208
|
+
export { RWSClient as RWSClientInstance };
|