6 lines
87 B
TypeScript
6 lines
87 B
TypeScript
export interface IArchiveItem {
|
|
id: number;
|
|
title: string;
|
|
youtube_id: string;
|
|
}
|