(baseType: string)
| 63 | * receive the latest implementation. |
| 64 | */ |
| 65 | export function getLatestBlock(baseType: string): BlockConfig | undefined { |
| 66 | return resolveLatest(baseType)?.config |
| 67 | } |
| 68 | |
| 69 | /** All blocks in a given category. */ |
| 70 | export function getBlocksByCategory(category: BlockCategory): BlockConfig[] { |
no test coverage detected