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