Chartbreaker
    Preparing search index...

    Interface ListModification<T>

    interface ListModification<T> {
        idx?: number;
        isLoadMore?: boolean;
        rows?: T[];
        type: "update" | "remove" | "reload" | "insert" | "append";
    }

    Type Parameters

    • T
    Index

    Properties

    idx?: number
    isLoadMore?: boolean
    rows?: T[]
    type: "update" | "remove" | "reload" | "insert" | "append"