激情钥匙

文章
3
资源
0
加入时间
2年10月20天

git错误解决 -- 无法切换分支

If no other git process is currently running, this probably means agit process crashed in this repository earlier. Make sure no other gitprocess is running and remove the file manually to continu...

TypeScript-4.函数

笔记。// 一、函数类型// 1.为函数定义类型// 函数传统写法function add1(arg1: number, arg2: number): number { return arg1 + arg2}// 函数ES6箭头函数const add2 = (arg1: number, arg2: number) => arg1 + arg2// ******类型定义********const arg3 = 5let add3: (x: number, y: number)