@equinor/fusion-framework-module-app
Advanced tools
Comparing version 5.0.1 to 5.1.0
@@ -6,2 +6,8 @@ # Change Log | ||
## 5.1.0 (2023-05-22) | ||
### Features | ||
- **module-app:** allow type hinting modules and env ([c80be46](https://github.com/equinor/fusion-framework/commit/c80be46c3c16a40b53506c29debfe6196ea7d945)) | ||
## 5.0.1 (2023-05-05) | ||
@@ -8,0 +14,0 @@ |
@@ -16,3 +16,3 @@ import { AnyModule, CombinedModules, ModulesInstance } from '@equinor/fusion-framework-module'; | ||
export type AppType = 'standalone' | 'report' | 'launcher'; | ||
export type CurrentApp = App | null | undefined; | ||
export type CurrentApp<TModules extends Array<AnyModule> = [], TEnv = any> = App<TEnv, TModules> | null | undefined; | ||
export type AppAuth = { | ||
@@ -19,0 +19,0 @@ clientId: string; |
{ | ||
"name": "@equinor/fusion-framework-module-app", | ||
"version": "5.0.1", | ||
"version": "5.1.0", | ||
"description": "", | ||
@@ -48,3 +48,3 @@ "main": "dist/esm/index.js", | ||
}, | ||
"gitHead": "851d70038b9b015663981a9456247f3d5dd0c3a2" | ||
"gitHead": "b7d1b547049cb9ac3038d2ceded4cb0b851eb052" | ||
} |
@@ -24,3 +24,6 @@ import { AnyModule, CombinedModules, ModulesInstance } from '@equinor/fusion-framework-module'; | ||
export type CurrentApp = App | null | undefined; | ||
export type CurrentApp<TModules extends Array<AnyModule> = [], TEnv = any> = | ||
| App<TEnv, TModules> | ||
| null | ||
| undefined; | ||
@@ -27,0 +30,0 @@ export type AppAuth = { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
259867
2095