Variable $NivelFormacaoInputCreateViewConst

$NivelFormacaoInputCreateView: {
    properties: {
        slug: {
            description: "Apelido do nível de formação.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["slug"];
    type: "object";
} = ...

Type declaration

  • Readonlyproperties: {
        slug: {
            description: "Apelido do nível de formação.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    }
  • Readonlyrequired: readonly ["slug"]
  • Readonlytype: "object"