UNPKG

@becklyn/contentful-adapter

Version:

[![CI](https://github.com/Becklyn-Studios/contentful-adapter/actions/workflows/ci.yml/badge.svg)](https://github.com/Becklyn-Studios/contentful-adapter/actions/workflows/ci.yml)

5 lines (4 loc) 342 B
import { ContentfulClientApi } from "contentful"; import { OriginalPageData } from "./types"; export declare const loadPagePaths: (client: ContentfulClientApi, contentType?: string) => Promise<Array<string[]>>; export declare const loadPageData: (client: ContentfulClientApi, slug: string, contentType?: string) => Promise<OriginalPageData>;