/
vanamingo
/
battle-ship
Обзор
Документация
Войти
/
vanamingo
/
battle-ship
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/app/app.component.ts
18 строк
311 B
maxim-maximov
Ts lint. no-consecutive-blank-lines
11 сен 2018, 09:43
11 сен 2018, 09:43
a3f7cc7
Код
Авторство
О чём код?
import { Component } from '@angular/core'; import { Game } from './Model/Game'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { game: Game; constructor() { } ngOnInit() { this.game = new Game(); } }