UNPKG

poststore

Version:

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

10 lines (9 loc) 398 B
import { FileNode, PathList, PageParamOption, PropList, PerPageOption } from '../typings'; interface getPropListProps { rootNode: FileNode; pathList: PathList; paramOption: Required<PageParamOption>; perPageOption: Required<PerPageOption>; } export declare const makePropList: ({ rootNode, pathList, paramOption, perPageOption, }: getPropListProps) => PropList; export {};