7 lines
88 B
TypeScript
7 lines
88 B
TypeScript
export interface Author {
|
|
id: string
|
|
name: string
|
|
avatar: string
|
|
role: string
|
|
}
|