我开始学习graphql-js源代码,但发现很难确定源代码是用vanilla js还是用typescript编写的
例如,主条目文件src/graphql.js具有以下代码:
import type { GraphQLSchema } from './type/schema';
import type { ExecutionResult } from './execution/execute';
我不认为导入类型是标准的js语法。谁能帮我解释一下它是用来干嘛的?
另外,下面的代码看起来像TypeScript,但是文件扩展名是js,而不是ts
function g
我正在尝试编写Martin Fowler的循环事件日历的实现,我理解其中的大部分内容,但在他的所有抽象类中,他都传递了一个名为eventArgs的字符串作为参数。
例如:
class Schedule {
public boolean isOccuring( String eventArg, Date aDate )
public Vector dates( String eventArg, DateRange during )
public Date nextOccurence( String eventArg, Date aDate )
}
有人知道这是干嘛用的吗?