Do not use default exports

This commit is contained in:
Matthias Schiffer 2018-11-01 00:59:13 +01:00
parent 22b06efe2c
commit 9f2e4e6996
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
12 changed files with 27 additions and 27 deletions

View file

@ -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[][][];