refactor(docs-infra): change unused classes to interfaces (#29553)

PR Close #29553
This commit is contained in:
George Kalpakas 2019-03-29 14:25:52 +02:00 committed by Jason Aden
parent 799a5a4915
commit b99a070f88
1 changed files with 3 additions and 3 deletions

View File

@ -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;
} }