解释下export type TransactionArgument = Infer<typeof TransactionArgument>
时间: 2024-06-03 17:09:33 浏览: 63
typetype-examples:使用typetype创建打字稿类型的示例
Export type TransactionArgument 是一个从 TransactionArgument 推断而来的类型。具体来说,它是通过 Infer 工具类型来推断 TransactionArgument 类型的。Infer 工具类型允许您从函数参数或变量类型中获取类型并将其作为返回类型使用。
阅读全文