Type alias SettingSchemaDesc

SettingSchemaDesc: {
    default: string | number | boolean | any[] | object | null;
    description: string;
    enumChoices?: string[];
    enumPicker?: "select" | "radio" | "checkbox";
    inputAs?: "color" | "date" | "datetime-local" | "range" | "textarea";
    key: string;
    title: string;
    type: "string" | "number" | "boolean" | "enum" | "object" | "heading";
}

Type declaration

  • default: string | number | boolean | any[] | object | null
  • description: string
  • Optional enumChoices?: string[]
  • Optional enumPicker?: "select" | "radio" | "checkbox"
  • Optional inputAs?: "color" | "date" | "datetime-local" | "range" | "textarea"
  • key: string
  • title: string
  • type: "string" | "number" | "boolean" | "enum" | "object" | "heading"

Generated using TypeDoc