Document This All In One

Document This 自定义注释 @author

vscode 自定义注释

  "docthis.automaticForBlockComments": true,
// When enabled, type information is added to comment tags.
"docthis.includeTypes": true,
// When enabled, memberOf information is added to comment tags on class members.
"docthis.includeMemberOfOnClassMembers": true,
// When enabled, memberOf information is added to comment tags on interface members.
"docthis.includeMemberOfOnInterfaceMembers": true,
// When enabled, JSDoc comments for functions and methods will include @description.
"docthis.includeDescriptionTag": true,
// When enabled, hungarian notation will be used as a type hint.
"docthis.enableHungarianNotationEvaluation": true,
// When enabled, will use names of params & methods as type hints.
"docthis.inferTypesFromNames": true,
// When enabled, will add the @author tag.
"docthis.includeAuthorTag": true,
// When docthis.includeAuthorTag is enabled, will add @author tag with this value.
"docthis.authorName": "xgqfrms",
/**
* @description 屏幕检测工具
* @author xgqfrms
* @class screenChecker
*/
class screenChecker {
constructor() {
this.screen = window.screen;
this.fullscreen = false;
this.screenSize = {
width: 0,
height: 0,
};
screenChecker.init();
}
getScreenSize() {
//
}
isFullScreen() {
//
}
static init() {
this.getScreenSize();
this.isFullScreen();
}
}

refs



xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


最新文章

  1. Linq查询基本操作
  2. python批量进行文件修改操作
  3. [2]项目创建-使用C#.NET开发基于本地数据缓存的PC客户端
  4. JavaScript密码复杂度
  5. 用nginx-gridFS读取MongoDB的图片及文件(为什么你老是配不成功?)
  6. 实验五实验报告 20135324&&20135330
  7. struts复合类型传值(对象传值)
  8. MUI 授权
  9. CUBRID学习笔记 3 net连接数据库并使用cubrid教程示例
  10. 用例图 UseCase Diagram
  11. Centos硬件信息查看命令
  12. java Object 类
  13. Promise原理—一步一步实现一个Promise
  14. [转]Docker学习之四:使用docker安装mysql
  15. 浅谈Redis之慢查询日志
  16. [Linux] 设置系统时区
  17. flask_admin 笔记五 内置模板设置
  18. Activity猫的一生-故事解说Activity生命周期
  19. python matploblib学习笔记
  20. 绝命毒师第五季/全集Breaking Bad迅雷下载

热门文章

  1. ADB 基本命令
  2. tcpdump安装与参数详解
  3. MySQL调优之查询优化
  4. 跨度实际上是用来计算排位(rank) 目标节点在跳跃表中的排位 有序集 排序计算
  5. 服务端 TCP 连接的 TIME_WAIT 过多问题的分析与解决
  6. 截屏转base64 调用栈
  7. .net core Wpf中使用cefsharp加载本地html网页,并且cefsharp支持any cpu
  8. 学习一下 SpringCloud (四)-- 服务降级、熔断 Hystrix、Sentinel
  9. Pytest(12)pytest缓存
  10. Python3内置类型有哪些?