gpt4 book ai didi

javascript - 如何同时导入组件和 props 类型别名?

转载 作者:行者123 更新时间:2023-11-28 04:29:23 25 4
gpt4 key购买 nike

export type PublicOrPrivateProps = {
publicOrPrivate: PublicOrPrivateT
};

export default ({ publicOrPrivate }: PublicOrPrivateProps) => <Box>{publicOrPrivate}</Box>;

我正在尝试像这样导入:

import type PublicOrPrivate, { PublicOrPrivateProps } from 'components/newrfq/reviewRFQ/PublicOrPrivate';

但它失败并出现以下错误:

type referenced from value position

最佳答案

您可以在名称列表中写入type,例如

import PublicOrPrivate, { type PublicOrPrivateProps } from 'components/newrfq/reviewRFQ/PublicOrPrivate';

此语法是在 Flow 0.38.0 中添加的。

关于javascript - 如何同时导入组件和 props 类型别名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44748658/

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