@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
20 lines (18 loc) • 486 B
text/typescript
import { CustomTypeModelFieldType } from "./types.cjs";
//#region src/types/model/timestamp.d.ts
/**
* A timestamp custom type field.
*
* More details: {@link https://prismic.io/docs/timestamp}
*/
interface CustomTypeModelTimestampField {
type: typeof CustomTypeModelFieldType.Timestamp;
config?: {
label?: string | null;
placeholder?: string;
default?: string;
};
}
//#endregion
export { CustomTypeModelTimestampField };
//# sourceMappingURL=timestamp.d.cts.map