Skip to content

Commit

Permalink
add @ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
kamakiri01 committed Nov 29, 2023
1 parent 2cbb8ee commit 686918c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/WeakRefKVS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ class PseudoWeakRef<T extends object> {
* 通常、ゲーム開発者はこのクラスを利用する必要はない。
*/
export class WeakRefKVS<T extends object> {

/**
* @ignore
*/
_weakRefClass: any = typeof WeakRef !== "undefined" ? WeakRef<T> : PseudoWeakRef<T>;

/**
* @ignore
*/
Expand Down

0 comments on commit 686918c

Please sign in to comment.