UNPKG

@lucidcms/plugin-pages

Version:

The official Pages plugin for Lucid

19 lines (15 loc) 418 B
import { Config } from '@lucidcms/core/types'; interface PluginOptions { collections: Array<{ collectionKey: string; useTranslations?: boolean; displayFullSlug?: boolean; // fallbackSlugSource?: string; }>; } declare const lucidPagesPlugin: (pluginOptions: PluginOptions) => (config: Config) => Promise<{ key: string; lucid: string; config: Config; }>; export { lucidPagesPlugin as default };