Variable $AuthLoginInputDtoConst

$AuthLoginInputDto: {
    properties: {
        matriculaSiape: {
            description: "Matrícula SIAPE.";
            nullable: false;
            type: "string";
        };
        senha: {
            description: "Senha do usuário.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["matriculaSiape", "senha"];
    type: "object";
} = ...