phaser/v3/typings/structs/Set.d.ts
2017-01-16 22:43:07 +01:00

17 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;
}