(script: Script | TScriptInfo)
| 164 | } |
| 165 | |
| 166 | export function getStorageName(script: Script | TScriptInfo): string { |
| 167 | const storagename = script.metadata?.storagename; |
| 168 | return storagename ? storagename[0] : script.uuid; |
| 169 | } |
| 170 | |
| 171 | export function getIcon(script: Script): string | undefined { |
| 172 | return ( |
no outgoing calls
no test coverage detected