UNPKG

poststore

Version:

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

8 lines (7 loc) 244 B
import { FileNode } from '../typings'; interface getNodeTreeProps { rootPath: string; slugMap?: Map<string, boolean>; } export declare function getNodeTree({ rootPath, slugMap, }: getNodeTreeProps): Promise<FileNode>; export {};