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