1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-16 03:31:52 +00:00

Fixed typescript type errors

This commit is contained in:
DJ1TJOO 2022-01-15 20:46:44 +01:00
parent 22b619e8ab
commit 4d33ff0e1c
2 changed files with 2 additions and 2 deletions

View File

@ -433,7 +433,7 @@ export class MapChunk {
* Sets the chunks contents
* @param {number} tileX
* @param {number} tileY
* @param {Entity=} contents
* @param {Entity} contents
* @param {Layer} layer
*/
setLayerContentFromWorldCords(tileX, tileY, contents, layer) {

View File

@ -138,7 +138,7 @@ export const types = {
/**
* A full schema declaration
* @typedef {Object.<string, BaseDataType>} Schema
* @typedef {Object.<string, BaseDataType> | object} Schema
*/
const globalSchemaCache = {};