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;
|
name: string;
|
||||||
order: number;
|
order: number;
|
||||||
contributors: Contributor[];
|
contributors: Contributor[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Contributor {
|
export interface Contributor {
|
||||||
group: string;
|
group: string;
|
||||||
name: string;
|
name: string;
|
||||||
picture?: string;
|
picture?: string;
|
||||||
website?: string;
|
website?: string;
|
||||||
twitter?: string;
|
twitter?: string;
|
||||||
bio?: string;
|
bio?: string;
|
||||||
isFlipped ? = false;
|
isFlipped?: boolean;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue