mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 06:55:55 +00:00
11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
export interface PostData {
|
|
title: string
|
|
href: string
|
|
create: number
|
|
update: number
|
|
tags?: string[]
|
|
cover?: string
|
|
excerpt: string
|
|
}
|
|
export declare const data: PostData[]
|