flow中问号在参数后面和在冒号有什么区别?declare type的作用是?看英文文档有点一知半解
// vue源码片段 declare type ASTElementHandler = { value: string; params?: Array; modifiers: ?ASTModifiers;// 这个好像是接收指定类型,undefi…
Vue 源码中的 %checks 有什么用
如下的%checks export function isUndef (v: any): boolean %checks { return v === undefined || v === null } 在 flow 的文档里没有找到解释 …
eslint-plugin-flowtype 函数调用 入参不对时没有生效?
flow.js //@flow function test(n: number): number { return n * n; } function test2(n) { return n * n; } test('9'); export default { desc: 'f…
- 共 1 页
- 1