phx-react
Version:
PHX REACT
16 lines (15 loc) • 455 B
TypeScript
export default function PHXChunkUpdateMany({ chunk, ids, idsKey, key, onProgress, query, variables, }: {
chunk?: number;
query: string;
ids: Array<string | number>;
variables?: Record<string, unknown>;
key?: string;
idsKey?: string;
onProgress?(progress: {
current: number;
total: number;
percentage: number;
currentChunk: number;
totalChunks: number;
}): void;
}): Promise<number>;