Type Alias AstNativeFunctionDecl

AstNativeFunctionDecl: {
    attributes: readonly FunctionAttribute[];
    id: number;
    kind: "native_function_decl";
    loc: SrcInfo;
    name: AstId;
    nativeName: FuncId;
    params: readonly AstTypedParameter[];
    return: AstType | undefined;
}