mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
18 lines
444 B
TypeScript
18 lines
444 B
TypeScript
|
export default class Set {
|
||
|
entries: any;
|
||
|
constructor(elements?: any);
|
||
|
add(value: any): void;
|
||
|
set(value: any): this;
|
||
|
get(property: any, value: any): any;
|
||
|
delete(value: any): this;
|
||
|
dump(): void;
|
||
|
each(callback: any): this;
|
||
|
iterate(callback: any): this;
|
||
|
clear(): this;
|
||
|
contains(value: any): boolean;
|
||
|
union(set: any): Set;
|
||
|
intersect(set: any): Set;
|
||
|
difference(set: any): Set;
|
||
|
size: any;
|
||
|
}
|