docs: replace class hero to interface wherever class properties not used (#34022)

Fixes #21186

PR Close #34022
This commit is contained in:
ajitsinghkaler
2019-11-25 20:47:02 +05:30
committed by Matias Niemelä
parent 7b77ead88f
commit 8ed7b73dc1
27 changed files with 28 additions and 28 deletions

View File

@ -11,7 +11,7 @@ import { delay } from 'rxjs/operators';
////////// The App: Services and Components for the tests. //////////////
export class Hero {
export interface Hero {
name: string;
}