Replies: 1 comment
-
Same issue, export namespace TaskAction{
/**
* Task Action
*/
- export type action = 'run' | 'pause' | 'resume'
+ export enum action {
+ RUN = 'run',
+ PAUSE = 'pause',
+ RESUME = 'resume'
+ }
+} eslint:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I didn't really understand the comments in the release notes. I don't understand why you couldn't do this:
instead of what 0.79 produces:
Beta Was this translation helpful? Give feedback.
All reactions