( command: unknown )
| 113 | } |
| 114 | |
| 115 | function isConditionalCommand( |
| 116 | command: unknown |
| 117 | ): command is IConditionalCommand { |
| 118 | return hasCommandType(command, CommandType.Conditional); |
| 119 | } |
| 120 | type UserScriptObjectExport = Record<string, unknown> & { |
| 121 | entry?: UserScriptFunction; |
| 122 | settings?: Record<string, unknown>; |
no test coverage detected