gpt4 book ai didi

javascript - FlowType 使用什么语言来定义接口(interface)?

转载 作者:行者123 更新时间:2023-11-27 23:26:21 24 4
gpt4 key购买 nike

FlowType接口(interface)文件是使用某种语言声明的。 This page contains some examples 。我在哪里可以获得该语言的概述,或者演示所有可用 token /类型/功能的冗长接口(interface)文件的示例?

最佳答案

以下是快速概述:

declare module ModuleName {
...more declare statements
}
declare module "QuotedModuleName" {
...more declare statements
}
declare module ModuleWithDefaultExport {
// declare class exports or declare function exports also works
declare var exports: exportType;
}
declare class ClassName {
propertyName: propertyType;
methodName(arg1: argType): returnType;
}
declare function functionName(arg1: argType): returnType;
declare var varName: varType;
interface InterfaceName {
propertyName: propertyType;
methodName(arg1: argType): returnType;
}
type TypeName = someType;

流二进制文件附带了一些嵌入其中的库文件。这些库指定了一些非常基本的东西,例如核心 JavaScript 内置函数、DOM API、Node 的 API 等。You can browse those lib files on github.

关于javascript - FlowType 使用什么语言来定义接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34933588/

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