We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ActionState
1 parent d8d1d6d commit e446d55Copy full SHA for e446d55
1 file changed
src/action-common.ts
@@ -0,0 +1,14 @@
1
+import { Env } from "./environment";
2
+import { FeatureEnablement } from "./feature-flags";
3
+import { Logger } from "./logging";
4
+
5
+export interface ActionState {
6
+ /** The logger that is in use. */
7
+ logger: Logger;
8
9
+ /** Information about environment variables. */
10
+ env: Env;
11
12
+ /** Information about enabled feature flags. */
13
+ features: FeatureEnablement;
14
+}
0 commit comments