Make the linter happier

ref #3
This commit is contained in:
Nicolai Ort 2020-11-25 19:41:40 +01:00
parent 3ce9a0b21a
commit 90136af516
1 changed files with 5 additions and 5 deletions

View File

@ -1,14 +1,14 @@
import {Entity, PrimaryGeneratedColumn, Column} from "typeorm";
import { Entity, PrimaryGeneratedColumn, Column } from "typeorm";
@Entity()
export class Track {
@PrimaryGeneratedColumn()
id!: number;
id: number;
@Column()
name!: string;
name: string;
//Length in meters
@Column()
length!: string;
}
length: string;
}