7 lines
101 B
TypeScript
7 lines
101 B
TypeScript
export interface IPage {
|
|
id: string;
|
|
date: string;
|
|
title: string;
|
|
content: string;
|
|
}
|