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