(schema: OutputSchema | undefined)
| 202 | } |
| 203 | |
| 204 | function getSchemaFieldNames(schema: OutputSchema | undefined): string[] { |
| 205 | if (!schema) return [] |
| 206 | return Object.keys(schema) |
| 207 | } |
| 208 | |
| 209 | export function resolveBlockReference( |
| 210 | blockName: string, |
no outgoing calls
no test coverage detected