gpt4 book ai didi

javascript - 这种说法 `const types = ({ editor }: { editor: Editor }) => {}` 是什么意思?

转载 作者:行者123 更新时间:2023-12-01 01:35:07 26 4
gpt4 key购买 nike

我最近在浏览 https://github.com/ory/editor/blob/master/packages/ui/src/Trash/index.js#L89

发现了一种我不明白的论点。完整代码如下:

const types = ({ editor }: { editor: Editor }) => {
const plugins = [
...Object.keys(editor.plugins.plugins.layout),
...Object.keys(editor.plugins.plugins.content)
].map(
(p: string) =>
editor.plugins.plugins.content[p].name ||
editor.plugins.plugins.layout[p].name
)

if (editor.plugins.hasNativePlugin()) {
plugins.push(editor.plugins.getNativePlugin()().name)
}

return plugins
}

这个论证的含义是什么?它叫什么?

最佳答案

这意味着函数将接收一个具有编辑器属性的对象,并且具有编辑器类型。

更多信息您可以查看https://flow.org/en/

关于javascript - 这种说法 `const types = ({ editor }: { editor: Editor }) => {}` 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52899390/

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