def process_param()

in bicep-typeless.py [0:0]


def process_param(line: str) -> str:
    toks = line.split()
    if toks[2] in OUTPUT_ARRAY_TYPES:
        toks[2] = "array"
    elif toks[2].endswith("_t"):
        toks[2] = "object"
    return " ".join(toks) + "\n"