@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
15 lines (13 loc) • 314 B
text/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
}
}