UNPKG
@tendrock/lib
Version:
alpha (0.1.0-alpha.2)
latest (0.6.0-alpha.1)
0.6.0-alpha.1
0.6.0-alpha.0
0.5.0-alpha.0
0.4.0-alpha.0
0.3.0-alpha.0
0.2.0-alpha.0
0.1.0-alpha.2
0.1.0-alpha.1
0.1.0-alpha
A lib under the Tendrock system for Minecraft Bedrock Script API
@tendrock/lib
/
types
/
generated
/
lib
/
BetterSet.d.ts
13 lines
(12 loc)
•
311 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** *
@deprecated
*/
export
declare
class
BetterSet
<
E
>
{
protected
elementList: E[];
add
(
element
: E):
boolean
;
delete
(
element
: E):
boolean
;
get
(
index
: number): E | undefined;
has
(
element
: E):
boolean
;
forEach
(
callback
: (
element
: E,
index
: number) =>
void
):
void
;
size
(): number; }