dmencu 0.1.33 → 0.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,6 +45,16 @@ declare type RegistroElemento<T extends ElementosRegistrables> = {
45
45
  fun: DirectFunction<T, void>;
46
46
  });
47
47
  export declare function registrarElemento<T extends ElementosRegistrables>(def: RegistroElemento<T>): void;
48
+ declare type RespuestasForPkComun = {
49
+ respuestas: Respuestas;
50
+ respuestasRaiz: RespuestasRaiz;
51
+ forPkRaiz: ForPkRaiz;
52
+ unidadAnalisis: UnidadAnalisis;
53
+ };
54
+ export declare function respuestasForPk(forPk: ForPk): RespuestasForPkComun;
55
+ export declare function respuestasForPk(forPk: ForPk, conAumentadas: true, agregarSiFalta?: boolean): RespuestasForPkComun & {
56
+ respuestasAumentadas: Respuestas;
57
+ };
48
58
  export declare function volcadoInicialElementosRegistrados(forPkRaiz: ForPkRaiz): void;
49
59
  export declare function calcularElementoEnfocado(idVariable: IdVariable | IdFin): {
50
60
  elementoInputVariable?: HTMLElement | null | undefined;