(variable: Variable)
| 69 | } |
| 70 | |
| 71 | export function getVariableCodeSyntax(variable: Variable): string | null { |
| 72 | const codeSyntax = variable.codeSyntax?.WEB |
| 73 | return typeof codeSyntax === 'string' && codeSyntax ? codeSyntax : null |
| 74 | } |
| 75 | |
| 76 | export function resolveVariableById( |
| 77 | id: string, |
no outgoing calls
no test coverage detected