新增doc

This commit is contained in:
yhh
2020-11-20 14:07:34 +08:00
parent 562bacbe22
commit 7eab688d9c
589 changed files with 179126 additions and 326 deletions

View File

@@ -1,5 +1,8 @@
module es {
export class Ref<T> {
/**
* 使得number/string/boolean类型作为对象引用来进行传递
*/
export class Ref<T extends number | string | boolean> {
public value: T;
constructor(value: T){