mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
export interface IContent {
|
|
author: String;
|
|
paragraphs: [String];
|
|
title: String;
|
|
id: String;
|
|
created_at: Number;
|
|
}
|