gpt4 book ai didi

javascript - 可以对无点函数进行流注释吗?

转载 作者:行者123 更新时间:2023-11-29 10:31:30 24 4
gpt4 key购买 nike

给定这些类型:

type Bar = number;
type Foo = {
bar: Bar,
};

而这个无点转换函数fooToBar:

import { prop } from 'ramda';
const fooToBar = prop('bar');

是否可以注释 fooToBarFoo -> Bar 签名?

最佳答案

function type annotation docs非常详细。看起来以下内容应该适合您

/* @flow */

type Bar = number;
type Foo = {
bar: Bar,
};

const prop = y => x => x[y];

const fooToBar : Foo => Bar = prop('bar');

Flow says

No errors!

关于javascript - 可以对无点函数进行流注释吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45041706/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com