@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
15 lines (14 loc) • 390 B
TypeScript
import type { CustomTypeModelFieldType } from "./types";
/**
* An integration custom type field.
*
* More details: {@link https://prismic.io/docs/integration-fields}
*/
export interface CustomTypeModelIntegrationField {
type: typeof CustomTypeModelFieldType.Integration;
config?: {
label?: string | null;
placeholder?: string;
catalog?: string;
};
}