问题描述
-
普通 declare
declare function hello1(s: string):void;
-
declare global
declare global { function hello2(s: string):void }
在声明文件 xxx.d.ts
中声明上述其中任何一个,都可以在全局之中检测并访问到 hello1/hello2,
那么这两种声明方式的区别是什么?
主要是 declare global
到底应该怎么用? 我在官方文档都没有找到这种用法
https://www.typescriptlang.or...
Global augmentation,在最后面