(content?: Uint8Array)
| 55 | const textDecoder = new TextDecoder() |
| 56 | |
| 57 | function decodeContent(content?: Uint8Array): string { |
| 58 | if (!content || content.length === 0) return '' |
| 59 | return textDecoder.decode(content) |
| 60 | } |
| 61 | |
| 62 | export async function listApplications( |
| 63 | client: AppConfigClient, |
no outgoing calls
no test coverage detected