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