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)

8 lines (7 loc) 306 B
import { Asset } from "@becklyn/ui-types"; import { ContentfulNormalizerService } from "./service"; interface NormalizedAsset extends Asset { id?: string | null; } export declare const normalizeAssetData: (data: any, service: ContentfulNormalizerService) => Promise<NormalizedAsset | null>; export {};