Delegate with implementation for API endpoints.
▸ getAssets(platform
): Promise
<Asset
[]>
Get all assets from compilation for given platform.
Should return []
if the compilation does not exists for given platform.
Name | Type |
---|---|
platform |
string |
Promise
<Asset
[]>
▸ getCompilationStats(platform
): Promise
<null
| CompilationStats
>
Get compilation stats for a given platform.
Should return null
if the compilation does not exists for given platform.
Name | Type |
---|---|
platform |
string |
Promise
<null
| CompilationStats
>
▸ getPlatforms(): Promise
<string
[]>
Get all platforms - either with already existing compilations or all supported platforms.
Promise
<string
[]>