@openfin/fdc3-api 36.78.8

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/LICENSE.md ADDED
@@ -0,0 +1,3 @@
1
+ Learn more about OpenFin licensing at the links listed below or email us at support@openfin.co with questions.
2
+
3
+ - [Developer agreement](https://openfin.co/developer-agreement/)
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # OpenFin FDC3 API
2
+
3
+ OpenFin FDC3 Client Library.
4
+
5
+ ## How to use
6
+
7
+ ```typescript
8
+ import { fdc3FromFin } from '@openfin/fdc3-api';
9
+
10
+ const fdc3 = await fdc3FromFin(window.fin);
11
+
12
+ window.fdc3 = fdc3;
13
+ ```