Číst v angličtině

Sdílet prostřednictvím


Type.ForFunction

Syntaxe

Type.ForFunction(signature as record, min as number) as type

O uživateli

function type Vytvoří z signature, záznamu ReturnType a Parametersa min, minimální počet argumentů požadovaných k vyvolání funkce.

Příklad 1

Vytvoří typ pro funkci, která přebírá číselný parametr s názvem X a vrací číslo.

Využití

Type.ForFunction([ReturnType = type number, Parameters = [X = type number]], 1)

Výstup

type function (X as number) as number