UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

21 lines (19 loc) 514 B
import { CustomTypeModelFieldType } from "./types.js"; //#region src/types/model/boolean.d.ts /** * A boolean custom type field. * * More details: {@link https://prismic.io/docs/boolean} */ interface CustomTypeModelBooleanField { type: typeof CustomTypeModelFieldType.Boolean; config?: { label?: string | null; default_value?: boolean; placeholder_true?: string; placeholder_false?: string; }; } //#endregion export { CustomTypeModelBooleanField }; //# sourceMappingURL=boolean.d.ts.map