This commit is contained in:
Peng Hailin 2022-05-26 11:05:02 +08:00
parent 83ef48ec53
commit fda0bb3ec8
3 changed files with 4 additions and 14 deletions

View File

@ -251,5 +251,3 @@ declare namespace D3 {
declare var d3: D3.Base;
```

View File

@ -112,9 +112,6 @@
6. `/root/node_modules/moduleB/index.js`
7. `/node_modules/moduleB.js`
8. `/node_modules/moduleB/package.json` (在该文件指明了一个`main`属性时)
@ -158,7 +155,6 @@
3. `/root/src/node_modules/moduleB.d.ts`
4. `/root/src/node_modules/moduleB/package.json` (在其指明了`types`属性时)
5. `/root/src/node_modules/moduleB/index.ts`
@ -167,14 +163,12 @@
7. `/root/src/node_modules/moduleB/index.d.ts`
8. `/root/node_modules/moduleB.ts`
9. `/root/node_modules/moduleB.tsx`
10. `/root/node_modules/moduleB.d.ts`
11. `/root/node_modules/moduleB/package.json` (在其指明了`types`属性时)
12. `/root/node_modules/moduleB/index.ts`
@ -183,15 +177,12 @@
14. `/root/node_modules/moduleB/index.d.ts`
15. `/node_modules/moduleB.ts`
16. `/node_modules/moduleB.tsx`
17. `/node_modules/moduleB.d.ts`
18. `/node_modules/moduleB/package.json` (在其指明了`types`属性时)
19. `/node_modules/moduleB/index.ts`

View File

@ -205,10 +205,11 @@ console.log(new Greeter("world"));
1. 静态成员的类构造函数或实例成员的类的原型Either the constructor function of the class for a static member, or the prototype of the class for an instance member, )。
> 关于静态成员与实例成员的区别:
> 前面所说的都是对于类的实例成员在实例化后的对象才会起作用。可以使用static定义类中的静态成员所有实例可以使用this中的名称来访问静态成员。
> [TypeScript笔记](http://yrq110.me/2018/01/06/20180106-typescript-note/)
> 关于静态成员与实例成员的区别:
> 前面所说的都是对于类的实例成员在实例化后的对象才会起作用。可以使用static定义类中的静态成员所有实例可以使用this中的名称来访问静态成员。
> [TypeScript笔记](http://yrq110.me/2018/01/06/20180106-typescript-note/)
2. 成员的名称。