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