interface DocTypeState {
    color:
        | "Blue"
        | "Cyan"
        | "Gray"
        | "Green"
        | "Light Blue"
        | "Orange"
        | "Pink"
        | "Purple"
        | "Red"
        | "Yellow";
    creation?: string;
    custom?: boolean;
    docstatus?: number;
    doctype?: string;
    idx?: number;
    modified?: string;
    modified_by?: string;
    name?: string;
    owner?: string;
    parent?: string;
    parentfield?: string;
    parenttype?: string;
    title: string;
}

Properties

color:
    | "Blue"
    | "Cyan"
    | "Gray"
    | "Green"
    | "Light Blue"
    | "Orange"
    | "Pink"
    | "Purple"
    | "Red"
    | "Yellow"
creation?: string
custom?: boolean
docstatus?: number
doctype?: string
idx?: number
modified?: string
modified_by?: string
name?: string
owner?: string
parent?: string
parentfield?: string
parenttype?: string
title: string