/** * an object containing all tileset */ export default class TMXTilesetGroup { tilesets: any[]; length: number; _lastTileset: any; /** * add a tileset to the tileset group * @param {TMXTileset} tileset */ add(tileset: TMXTileset): void; /** * return the tileset at the specified index * @param {number} i * @returns {TMXTileset} corresponding tileset */ getTilesetByIndex(i: number): TMXTileset; /** * return the tileset corresponding to the specified id
* will throw an exception if no matching tileset is found * @param {number} gid * @returns {TMXTileset} corresponding tileset */ getTilesetByGid(gid: number): TMXTileset; } //# sourceMappingURL=TMXTilesetGroup.d.ts.map