9 lines
123 B
TypeScript
9 lines
123 B
TypeScript
|
|
export interface ParticipantsDataType {
|
||
|
|
data: Datum[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Datum {
|
||
|
|
title: string;
|
||
|
|
content: string;
|
||
|
|
}
|