( input: EchoProvisionerResponses | StarterTemplates | undefined, )
| 260 | } |
| 261 | |
| 262 | function isStarterTemplate( |
| 263 | input: EchoProvisionerResponses | StarterTemplates | undefined, |
| 264 | ): input is StarterTemplates { |
| 265 | if (!input) { |
| 266 | return false; |
| 267 | } |
| 268 | return typeof input === "string"; |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * createTemplate navigates to the /templates/new page and uploads a template |