poststore
Version:
PostStore can be used with NEXT.JS to create markdown-based blogs.
5 lines (4 loc) • 552 B
TypeScript
import { getCategoryPageHandler, getPageHandler, getPostPageHandler, getTagPageHandler, getMainPageHandler, getGlobalPageHandler } from './pageHandler';
import type { ListPageProp, PostPageProp, PostStoreConfig, PostData, GlobalProp, PropInfoNode, PropInfo, ShortPostData } from './typings';
export type { ListPageProp, PostPageProp, PostStoreConfig, PostData, GlobalProp, PropInfoNode, PropInfo, ShortPostData, };
export { getCategoryPageHandler, getPageHandler, getPostPageHandler, getTagPageHandler, getMainPageHandler, getGlobalPageHandler, };