@becklyn/contentful-adapter
Version:
[](https://github.com/Becklyn-Studios/contentful-adapter/actions/workflows/ci.yml)
8 lines (7 loc) • 306 B
TypeScript
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 {};