rename value getter

This commit is contained in:
Erik 2023-07-13 03:26:47 +03:00
parent 782ee6e781
commit 4f8e8df1cc
Signed by: Navy.gif
GPG Key ID: 2532FBBB61C65A68

View File

@ -49,8 +49,8 @@ class Flag
this.#_hierarchy = data.hierarchy || ''; this.#_hierarchy = data.hierarchy || '';
this.#_type = Flag.resolveType(data.value); this.#_type = Flag.resolveType(data.value);
} }
getValue<T> () get<T> ()
{ {
return this.#_value as T; return this.#_value as T;
} }