新增doc
This commit is contained in:
@@ -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){
|
||||
|
||||
Reference in New Issue
Block a user