UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

19 lines (17 loc) 447 B
import { CustomTypeModelFieldType } from "./types.js"; //#region src/types/model/keyText.d.ts /** * A key text custom type field. * * More details: {@link https://prismic.io/docs/key-text} */ interface CustomTypeModelKeyTextField { type: typeof CustomTypeModelFieldType.Text; config?: { label?: string | null; placeholder?: string; }; } //#endregion export { CustomTypeModelKeyTextField }; //# sourceMappingURL=keyText.d.ts.map