refactor(docs-infra): change unused classes to interfaces (#29553)
PR Close #29553
This commit is contained in:
parent
799a5a4915
commit
b99a070f88
|
@ -1,15 +1,15 @@
|
|||
export class ContributorGroup {
|
||||
export interface ContributorGroup {
|
||||
name: string;
|
||||
order: number;
|
||||
contributors: Contributor[];
|
||||
}
|
||||
|
||||
export class Contributor {
|
||||
export interface Contributor {
|
||||
group: string;
|
||||
name: string;
|
||||
picture?: string;
|
||||
website?: string;
|
||||
twitter?: string;
|
||||
bio?: string;
|
||||
isFlipped ? = false;
|
||||
isFlipped?: boolean;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue