UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

13 lines (12 loc) 302 B
import type { CustomTypeModelFieldType } from "./types"; /** * A table custom type field. * * More details: {@link https://prismic.io/docs/table} */ export interface CustomTypeModelTableField { type: typeof CustomTypeModelFieldType.Table; config?: { label?: string | null; }; }