docs: replace class hero to interface wherever class properties not used (#34022)
Fixes #21186 PR Close #34022
This commit is contained in:
parent
8c76e78ec4
commit
1217c6b7cc
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ import { protractor, browser, element, by, ElementFinder } from 'protractor';
|
|||
|
||||
const nameSuffix = 'X';
|
||||
|
||||
class Hero {
|
||||
interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
name: string;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
isSecret = false;
|
||||
isSecret: boolean;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// #docregion
|
||||
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
tid: string; // tax id
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
emotion?: string;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
emotion?: string;
|
||||
|
|
|
@ -4,7 +4,7 @@ import { Component, NgModule, OnInit } from '@angular/core';
|
|||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||||
|
||||
class Hero {
|
||||
interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// #docregion
|
||||
// #docregion example
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
name: string;
|
||||
power: string;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// #docregion
|
||||
// #docregion example
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
name: string;
|
||||
power: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue