Do not use default exports
This commit is contained in:
parent
22b06efe2c
commit
9f2e4e6996
12 changed files with 27 additions and 27 deletions
|
@ -1,12 +1,10 @@
|
|||
import {mapFromObject} from '../../util';
|
||||
|
||||
interface Input {
|
||||
export interface Input {
|
||||
readonly tiles: string[];
|
||||
readonly collision: boolean[][];
|
||||
readonly layers: number[][][];
|
||||
}
|
||||
|
||||
export default class MapData {
|
||||
export class MapData {
|
||||
public readonly tiles: string[];
|
||||
public readonly collision: boolean[][];
|
||||
public readonly layers: number[][][];
|
Reference in a new issue