docs: replace class hero to interface wherever class properties not used (#34022)
Fixes #21186 PR Close #34022
This commit is contained in:

committed by
Matias Niemelä

parent
8c76e78ec4
commit
1217c6b7cc
@ -1,6 +1,6 @@
|
||||
// #docregion
|
||||
export class Hero {
|
||||
export interface Hero {
|
||||
id: number;
|
||||
name: string;
|
||||
isSecret = false;
|
||||
isSecret: boolean;
|
||||
}
|
||||
|
Reference in New Issue
Block a user