Explorar el Código

Removes any usage

main
Eric Amodio hace 3 años
padre
commit
0038dbd183
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      src/views/nodes/viewNode.ts
  2. +1
    -1
      src/views/viewBase.ts

+ 1
- 1
src/views/nodes/viewNode.ts Ver fichero

@ -173,7 +173,7 @@ export interface PageableViewNode {
readonly id: string;
limit?: number;
readonly hasMore: boolean;
loadMore(limit?: number | { until?: any }): Promise<void>;
loadMore(limit?: number | { until?: string | undefined }): Promise<void>;
}
export namespace PageableViewNode {

+ 1
- 1
src/views/viewBase.ts Ver fichero

@ -545,7 +545,7 @@ export abstract class ViewBase<
})
async loadMoreNodeChildren(
node: ViewNode & PageableViewNode,
limit: number | { until: any } | undefined,
limit: number | { until: string | undefined } | undefined,
previousNode?: ViewNode,
) {
if (previousNode != null) {

Cargando…
Cancelar
Guardar