UNPKG

poststore

Version:

PostStore can be used with NEXT.JS to create markdown-based blogs.

12 lines (11 loc) 211 B
export interface Path { params: { [paramName: string]: string | string[]; }; } export interface PathList { post: Path[]; category: Path[]; tag: Path[]; page: Path[]; }