#418 - Heading and divider fields

This commit is contained in:
Elio Struyf
2022-09-19 10:18:41 +02:00
parent 67b44dce42
commit 2cf3ff93c5
5 changed files with 49 additions and 5 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ export interface ContentType {
postScript?: string;
}
export type FieldType = "string" | "number" | "datetime" | "boolean" | "image" | "choice" | "tags" | "categories" | "draft" | "taxonomy" | "fields" | "json" | "block" | "file" | "dataFile" | "list" | "slug";
export type FieldType = "string" | "number" | "datetime" | "boolean" | "image" | "choice" | "tags" | "categories" | "draft" | "taxonomy" | "fields" | "json" | "block" | "file" | "dataFile" | "list" | "slug" | "divider" | "heading";
export interface Field {
title?: string;