@if (data?.elFunction; as elFunction) {
{{ elFunction.name }}
@if (hasDescription(elFunction)) {
{{ elFunction.description }}
}
Arguments
@if (hasArguments(elFunction)) {
    @for (argument of getArguments(elFunction); track argument) {
  • {{ argument }} - {{ getArgumentDescription(elFunction, argument) }}
  • }
} @else {
None
}
@if (elFunction.subject) {
Subject
{{ elFunction.subject }}
}
Return
{{ elFunction.returnType }}
}